@growsuper/eslint-plugin
v0.0.4
Published
Custom ESLint rules that help developers follow the GROW Super coding style
Downloads
1,403
Maintainers
Readme
@growsuper/eslint-plugin-growsuper ⚠️ Work in progress ⚠️
Custom ESLint rules that help developers follow the GROW Super coding style.
Originally forked and adapted from eslint-plugin-vue (some remnants of the earlier project still need to be cleaned up)
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-growsuper
:
$ npm install eslint-plugin-growsuper --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-growsuper
globally.
Usage
NOTE: use @growsuper/eslint-config
Add growsuper
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["growsuper"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"growsuper/rule-name": 2
}
}
Supported Rules
- Fill in provided rules here