eslint-config-adpyke-es6

A nice ESLint preset for ES6


Keywords
eslint, es6, ecmascript6
License
ISC
Install
npm install eslint-config-adpyke-es6@1.4.13

Documentation

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