Detalhes do pacote

eslint-config-adpyke-es6

kufii66ISC1.4.13

A nice ESLint preset for ES6

eslint, es6, ecmascript6

readme (leia-me)

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...
    }
}