eslint-plugin-volkmann
v0.3.3
Published
for learning how to write plugins
Maintainers
Readme
eslint-plugin-volkmann
Mark Volkmann's collection of ESLint plugins
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-volkmann:
$ npm install eslint-plugin-volkmann --save-devNote: 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
