Skip to content

Instantly share code, notes, and snippets.

@egm0121
Created April 27, 2017 08:33
Show Gist options
  • Save egm0121/f3e584d264104b1e4bc047a0dcb5e4dd to your computer and use it in GitHub Desktop.
Save egm0121/f3e584d264104b1e4bc047a0dcb5e4dd to your computer and use it in GitHub Desktop.
eslint rules extending reccomanded
{
"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