Created
June 21, 2016 16:30
-
-
Save obihann/4e3bfae73ab51ccaddfd242402f3cfcb to your computer and use it in GitHub Desktop.
ESLint config for react and jsx
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", | |
"env": { | |
"browser": true, | |
"node": true | |
}, | |
"settings": { | |
"ecmascript": 6, | |
"jsx": true | |
}, | |
"plugins": [ | |
"react" | |
], | |
"rules": { | |
"strict": 0, | |
"quotes": 0, | |
"no-unused-vars": 0, | |
"camelcase": 0, | |
"no-underscore-dangle": 0 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment