Skip to content

Instantly share code, notes, and snippets.

@obihann
Created June 21, 2016 16:30
Show Gist options
  • Save obihann/4e3bfae73ab51ccaddfd242402f3cfcb to your computer and use it in GitHub Desktop.
Save obihann/4e3bfae73ab51ccaddfd242402f3cfcb to your computer and use it in GitHub Desktop.
ESLint config for react and jsx
{
"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