A set of customized ESLint and @typescript/eslint rules
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-turisap:
npm install eslint-plugin-turisap --save-devAdd 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"]
}
]
}
}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)