ESLint fingerproof config
Redefines ESLint configuration rules to match our coding style preferencies.
$ npm install --save-dev eslint eslint-config-fingerproof
Or if you still use ESLint 2:
$ npm install --save-dev [email protected] [email protected]
Or if you still use ESLint 1:
$ npm install --save-dev [email protected] [email protected]
Create an ESLint configuration file (we like .eslintrc.yaml better) which should contain at least the following line:
extends: "fingerproof"
Or if you write ES6 code:
extends: "fingerproof/es6"
Or if you write ES7 code:
extends: "fingerproof/es7"
- Learn more about ESLint shareable configs.
- Use ESLint in Sublime Text thanks to SublimeLinter and its ESLint plugin.