Skip to content

Instantly share code, notes, and snippets.

@kulesa
Created July 24, 2015 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kulesa/58a9e4910fe19d948333 to your computer and use it in GitHub Desktop.
Save kulesa/58a9e4910fe19d948333 to your computer and use it in GitHub Desktop.
ESLint config
{
"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