Skip to content

Instantly share code, notes, and snippets.

@olegpolyakov
Created March 22, 2017 12:36
Show Gist options
  • Save olegpolyakov/ecb6dd5fd5ea820c96c4d7e45cec3c36 to your computer and use it in GitHub Desktop.
Save olegpolyakov/ecb6dd5fd5ea820c96c4d7e45cec3c36 to your computer and use it in GitHub Desktop.
ES List configuration
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"indent": ["error", 4, { "SwitchCase": 1 }],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "single"],
"semi": ["error", "always"]
},
"ignore": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment