Last active
May 12, 2016 09:15
-
-
Save snovakovic/9a523a5cf51fcd844f13d9b341d8225f to your computer and use it in GitHub Desktop.
eslint configuration
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
{ | |
"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