Created
July 24, 2015 13:20
-
-
Save kulesa/58a9e4910fe19d948333 to your computer and use it in GitHub Desktop.
ESLint config
This file contains 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", | |
"env": { | |
"browser": true, | |
"node": true | |
}, | |
"settings": { | |
"ecmascript": 6, | |
"jsx": true | |
}, | |
"plugins": [ | |
"react" | |
], | |
"rules": { | |
"strict": 0, | |
"quotes": 0, | |
"comma-dangle": [2, "always-multiline"], | |
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}], | |
"camelcase": [2, {"properties": "always"}], | |
"no-underscore-dangle": 0 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment