1.0.4 • Published 6 years ago
eslint-config-pichouk v1.0.4
eslint-config-pichouk
@pichouk custom ESLint rules bundle in a NPM package.
Quickstart
Add the package on your dependencies.
yarn add --dev eslint-config-pichoukThen create (if not already) an .eslintrc file on your project, and add this package as an extension :
{
"extends": "eslint-config-pichouk"
}Rules overwrite
It is possible to override the rules in this package. You just need to modify it on your .eslintrc file.
For example, if you want to disable no-unused-vars rule, your .eslintrc should look like this :
{
"extends": "eslint-config-pichouk",
"rules": {
"no-unused-vars": ["off"]
}
}