eslint-plugin-nova
v1.7.0
Published
ESLint rules for the Nova extension API
Readme
eslint-plugin-nova
ESLint rules for the Nova extension API.
Installation
You'll first need to install ESLint:
$ npm install eslint --save-devNext, install eslint-plugin-nova:
$ npm install eslint-plugin-nova --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-nova globally.
Usage
Add nova to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"nova"
]
}Finally, add nova/nova to the env section of your .eslintrc file:
"env": {
"commonjs": true,
"nova/nova": true
}