eslint-config-barney
v2.4.0
Published
Barney Parker's ESLint config
Downloads
31
Maintainers
Readme
eslint-config-barney
Barney Parker's base ESLint configuration.
Usage
npm install --save-dev eslint-config-barney
- In your
eslintrc.config.js
file, add the following:
import barneyConfig from 'eslint-config-barney'
export default [
...barneyConfig,
// anything from here will override barneyConfig
{
rukles: {
'no-unused-vars': 'warn',
},
},
]