eslint-plugin-turisap
v0.0.20
Published
no-magic-numbers enhanced
Downloads
6
Maintainers
Readme
eslint-plugin-turisap
A set of customized ESLint and @typescript/eslint
rules
Installation
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-turisap
:
npm install eslint-plugin-turisap --save-dev
Usage
Add turisap
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"turisap"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"turisap/no-magic-numbers": [
"error",
{
"allowRGBa": true,
"allowedCalls": ["setTimeout"]
}
]
}
}
Supported Rules
turisap/no-magic-numbers
: the same as original ESLint rule, but allows to use a few extra settings, namely
- rgb(a) arrays with numbers:
const rgbColor = [255, 255, 255];
const rgbaColor = [0, 0, 0, 0.5];
- numeric function params in specified functions. For example, it is pretty obvious what the following parameter means
const id = setTimeout(fn, 300);
By the same token, it does not report the space
param on JSON.stringify
const body = JSON.stringify(user, null, 2)