You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 12, 2022. It is now read-only.
I want to perform automated validation of following things on git pre-commit hook:
RAML 0.8 syntax
json-schemas (with $refs)
examples (from my experience 99% of mistakes or typos are here, must have)
As i see, this module is not intended to perform this (i even can't see raml-js-parser in dependencies and i can't get how to perform deep validation without it). Perhaps you can advice a best way to implement such validation?
In fact, raml-js-parser itself is able to parse RAML 0.8 and dereference all schemas using key dereferenceSchemas=true. So, perhaps it would be enough to see if RAML file with dereferenced is just being parsed successfully.
Also, there is module tv4 that can validate json against given json-schema. They can be used together to perform automated tests. What do you think?
P.S. I've created in a separate thread, because this issue is about version 1.0.
I want to perform automated validation of following things on git pre-commit hook:
As i see, this module is not intended to perform this (i even can't see raml-js-parser in dependencies and i can't get how to perform deep validation without it). Perhaps you can advice a best way to implement such validation?
In fact, raml-js-parser itself is able to parse RAML 0.8 and dereference all schemas using key
dereferenceSchemas=true. So, perhaps it would be enough to see if RAML file with dereferenced is just being parsed successfully.Also, there is module tv4 that can validate json against given json-schema. They can be used together to perform automated tests. What do you think?
P.S. I've created in a separate thread, because this issue is about version 1.0.