Last active
September 4, 2015 12:01
-
-
Save hmps/37e6b680b43fbadd2566 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
{ | |
"parser": "babel-eslint", | |
"rules": { | |
"indent": [ 2, 4 ], | |
"quotes": [ 2, "single" ], | |
"linebreak-style": [ 2, "unix" ], | |
"semi": [ 2, "always" ], | |
"func-names": 2, | |
"comma-style": 2, | |
"brace-style": [2, "1tbs", { "allowSingleLine": true }], | |
"no-use-before-define": 0, | |
"no-underscore-dangle": 0 | |
}, | |
"ecmaFeatures": { | |
"modules": true | |
}, | |
"env": { | |
"es6": true, | |
"browser": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment