Skip to content

Instantly share code, notes, and snippets.

@snovakovic
Last active May 12, 2016 09:15
Show Gist options
  • Save snovakovic/9a523a5cf51fcd844f13d9b341d8225f to your computer and use it in GitHub Desktop.
Save snovakovic/9a523a5cf51fcd844f13d9b341d8225f to your computer and use it in GitHub Desktop.
eslint configuration
{
"extends": [
"eslint:recommended"
],
"env": {
"browser": true,
"jasmine": true
},
"ecmaFeatures": {
"blockBindings": true,
"templateStrings": true
},
"globals": {
},
"rules": {
"no-console": 1,
"quotes": [1, "single"],
"eol-last": 1,
"space-before-blocks": [1, "always"],
"semi": [1, "always"],
"indent": [1, 2, {"SwitchCase": 1}],
"curly": 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment