0.1.5 • Published 6 years ago
eslint-plugin-no-except v0.1.5
eslint-plugin-no-except
Rules that allow exceptions on some default eslint no rules. These are not supposed to completely replace the eslint rules, just allow the exceptions where they are needed.
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-no-except:
$ npm install eslint-plugin-no-except --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-no-except globally.
Usage
Add no-except to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": ["no-except"]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"no-except/rule-name": 2
}
}