1.0.1 • Published 2 years ago
eslint-config-evolver-demo v1.0.1
Eslint demo config
Installation
npm install --save-dev eslint-demo-config
Usage
Add the following to your .eslintrc
file:
{
"extends": "eslint-demo-config"
}
Extending or overriding rules
Rules can be extended and overridden by adding them to your .eslintrc
file:
{
"extends": "eslint-demo-config",
"rules": {
"max-lines-per-function": "off"
}
}