UNPKG

eslint-config-adpyke-es6

Version:
21 lines (14 loc) 751 B
# eslint-config-adpyke-es6 A highly opinionated ESLint [shareable config](https://eslint.org/docs/developer-guide/shareable-configs.html) 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](http://eslint.org/docs/user-guide/configuring#extending-configuration-files) section of your [ESLint configuration](http://eslint.org/docs/user-guide/configuring). ```javascript { "extends": "adpyke-es6", "rules": { // Additional, per-project rules... } } ```