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