Package Exports
- eslint-plugin-json-schema-validator
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-json-schema-validator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Introduction
This plugin is an experimental feature.
eslint-plugin-json-schema-validator is ESLint plugin that validates data using JSON Schema Validator.
📛 Features
This ESLint plugin validates JSON, JSONC, JSON5, YAML and TOML with JSON Schema.
📖 Documentation
See documents.
💿 Installation
npm install --save-dev eslint eslint-plugin-jsonc eslint-plugin-json-schema-validatorRequirements
- ESLint v6.0.0 and above
- Node.js v8.10.0 and above
📖 Usage
Configuration
Use .eslintrc.* file to configure rules. See also: https://eslint.org/docs/user-guide/configuring.
Example .eslintrc.js:
module.exports = {
extends: [
// add more generic rulesets here, such as:
// 'eslint:recommended',
'plugin:json-schema-validator/recommended'
],
rules: {
// override/add rules settings here, such as:
// 'json-schema-validator/no-invalid': 'error'
}
}This plugin provides configs:
plugin:json-schema-validator/recommended... Above, plus rules to prevent errors or unintended behavior.
Running ESLint from the command line
If you want to run eslint from the command line, make sure you include the .json, .json5, .yaml, .yml and .toml extension using the --ext option or a glob pattern, because ESLint targets only .js files by default.
Examples:
eslint --ext .js,.json,.json5,.yaml,.yml,.toml src
eslint "src/**/*.{js,json,json5,yaml,yml,toml}"💻 Editor Integrations
Visual Studio Code
Use the dbaeumer.vscode-eslint extension that Microsoft provides officially.
You have to configure the eslint.validate option of the extension to check .json, .json5, .yaml, .yml and .toml files, because the extension targets only *.js or *.jsx files by default.
Example .vscode/settings.json:
{
"eslint.validate": [
"javascript",
"javascriptreact",
"json",
"jsonc",
"json5",
"yaml",
"toml"
]
}✅ Rules
The rules with the following star ⭐ are included in the configs.
Rules
| Rule ID | Description | Fixable | RECOMMENDED |
|---|---|---|---|
| json-schema-validator/no-invalid | validate object with JSON Schema. | ⭐ |
🍻 Contributing
Welcome contributing!
Please use GitHub's Issues/PRs.
Development Tools
npm testruns tests and measures coverage.npm run updateruns in order to update readme and recommended configuration.
Working With Rules
This plugin uses jsonc-eslint-parser, yaml-eslint-parser and toml-eslint-parser for the parser.
👫 Related Packages
- eslint-plugin-jsonc ... ESLint plugin for JSON, JSON with comments (JSONC) and JSON5.
- eslint-plugin-yml ... ESLint plugin for YAML.
- eslint-plugin-toml ... ESLint plugin for TOML.
- jsonc-eslint-parser ... JSON, JSONC and JSON5 parser for use with ESLint plugins.
- yaml-eslint-parser ... YAML parser for use with ESLint plugins.
- toml-eslint-parser ... TOML parser for use with ESLint plugins.
🔒 License
See the LICENSE file for license rights and limitations (MIT).
The JSON schema copied from SchemaStore included in this plug-in release is licensed under Apache License 2.0.