@byba/eslint-config
v1.4.0
Published
ESLint shareable config for the British Youth Band Association
Downloads
7
Readme
eslint-config
ESLint shareable config for the British Youth Band Association
Installation
$ npm install -D eslint @byba/eslint-config
Usage
Once the @byba/eslint-config
package is installed, you can use it by adding @byba
to the extends
section of your ESLint configuration.
{
...
"extends": "@byba",
...
}
Using this config in conjunction with eslint:recommended
To work properly, this rule set is designed to be used alongside the eslint:recommended
rule set. To do this, simply define them both inside the extends
section of your ESLint configuration.
{
...
"extends": [
"eslint:recommended",
"@byba"
],
...
}