0.2.0 • Published 8 years ago
eslint-plugin-jsonschema v0.2.0
eslint-plugin-jsonschema
eslint plugin for jsonschema
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-jsonschema:
$ npm install eslint-plugin-jsonschema --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-jsonschema globally.
Usage
Add jsonschema to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"jsonschema"
],
"settings": {
"jsonschema": {
"schemaDirectory": [ "/path/to/schema" ]
}
}
}