eslint-plugin-volkmann
v0.3.3
Published
for learning how to write plugins
Downloads
59
Maintainers
Readme
eslint-plugin-volkmann
Mark Volkmann's collection of ESLint plugins
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-volkmann
:
$ npm install eslint-plugin-volkmann --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-volkmann
globally.
Usage
Add volkmann
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"volkmann"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"volkmann/rule-name": "error"
}
}
Supported Rules
- embrace-booleans