Skip to content

Instantly share code, notes, and snippets.

@stinoga
Created February 8, 2016 17:30
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 stinoga/e69ba869a26a28866cae to your computer and use it in GitHub Desktop.
Save stinoga/e69ba869a26a28866cae to your computer and use it in GitHub Desktop.
Eslint configuration
{
"rules": {
"indent": [
2,
2
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"ecmaFeatures": {
"jsx": true,
},
"plugins": [
"react"
],
"parser": "babel-eslint",
"globals": {
"angular": true,
"$": true,
"gettext": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment