eslint-plugin-feq
v0.0.1
Published
custom eslint rules
Downloads
2
Maintainers
Readme
eslint-plugin-feq
Custom rules.
Installation
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-feq
:
npm install eslint-plugin-feq --save-dev
Usage
Add feq
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["feq"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"feq/no-undef": ["error", { "prefix": "JSP__" }]
}
}
Supported Rules
- Fill in provided rules here
- feq/no-undef: Exclude specific prefix variables.