3.0.0 • Published 9 years ago
eslint-config-fingerproof v3.0.0
ESLint fingerproof config
About
Redefines ESLint configuration rules to match our coding style preferencies.
Installation
$ npm install --save-dev eslint eslint-config-fingerproof
Or if you still use ESLint 2:
$ npm install --save-dev eslint@2.13.1 eslint-config-fingerproof@2.4.0
Or if you still use ESLint 1:
$ npm install --save-dev eslint@1.10.3 eslint-config-fingerproof@1.0.0
Usage
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"
Useful links
- Learn more about ESLint shareable configs.
- Use ESLint in Sublime Text thanks to SublimeLinter and its ESLint plugin.