0.0.8 • Published 3 years ago
eslint-plugin-magic-variables v0.0.8
eslint-plugin-magic-variables
Prevent variable names that are numeric, or are the word form of a number from being used. i.e. FIFTY_TWO is not a valid variable name.
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-magic-variables:
npm install eslint-plugin-magic-variables --save-devUsage
Add magic-variables to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"magic-variables"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"magic-variables/rule-name": 2
}
}Rules
| Name | Description |
|---|---|
| no-magic-variables | prevent magic numbers from being used as a variable name |