0.8.0 • Published 1 year ago
eslint-plugin-isotropic v0.8.0
eslint-plugin-isotropic
ESLint rules for Isotropic
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-isotropic:
$ npm install eslint-plugin-isotropic --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-isotropic globally.
Usage
Add isotropic to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"isotropic"
]
}Then extend your configuration:
{
"extends": "plugin:isotropic/isotropic"
}or configure the individual rules you want to use under the rules section.
{
"rules": {
"isotropic/rule-name": 2
}
}