Created
April 27, 2017 08:33
-
-
Save egm0121/f3e584d264104b1e4bc047a0dcb5e4dd to your computer and use it in GitHub Desktop.
eslint rules extending reccomanded
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"env": { | |
"es6": true, | |
"node": true | |
}, | |
"extends": "eslint:recommended", | |
"parserOptions": { | |
"sourceType": "module", | |
"ecmaVersion": 8 | |
}, | |
"rules": { | |
"indent": [ | |
"error", | |
4 | |
], | |
"linebreak-style": [ | |
"error", | |
"unix" | |
], | |
"quotes": [ | |
"error", | |
"single" | |
], | |
"semi": [ | |
"error", | |
"always" | |
], | |
"no-unused-vars": [ | |
"warn", | |
{ "vars": "all", "args": "after-used" } | |
], | |
"no-console" : "off" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment