eslint-config-adpyke-react
v1.2.16
Published
Highly opinionated ESLint config for React projects.
Downloads
5
Readme
eslint-config-adpyke-react
A highly opinionated ESLint shareable config config that I use for my React projects. It uses tab indentation, has strict white space rules, and enforces ES6 standards.
Installation
$ npm install --save-dev eslint babel-eslint eslint-config-adpyke-react eslint-plugin-react
Usage
Once the eslint-config-adpyke-react
package is installed, you can use it by specifying adpyke-react
in the extends section of your ESLint configuration.
{
"extends": "adpyke-react",
"rules": {
// Additional, per-project rules...
}
}