eslint-config-arno
v1.0.4
Published
ESLint [shareable config](http://eslint.org/docs/developer-guide/shareable-configs) for the WF-RIA³ JavaScript style guide.
Downloads
3
Readme
eslint-config-arno
ESLint shareable config for the WF-RIA³ JavaScript style guide.
Installation
If you use Yarn:
$ cd <your-project>
$ yarn add eslint eslint-plugin-jsx-a11y eslint-plugin-react eslint-config-arno
If you use npm:
$ cd <your-project>
$ npm install --save-dev eslint eslint-plugin-jsx-a11y eslint-plugin-react eslint-config-arno
Usage
Once the eslint-config-arno
package is installed, you can use it by specifying arno
in the extends
section of your ESLint configuration.
{
"extends": "arno",
"rules": {
// your project overrides
}
}