Skip to content

Instantly share code, notes, and snippets.

@vastus
Created August 5, 2015 19:25
Show Gist options
  • Select an option

  • Save vastus/d64f19f535e90d7adbd9 to your computer and use it in GitHub Desktop.

Select an option

Save vastus/d64f19f535e90d7adbd9 to your computer and use it in GitHub Desktop.
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true
},
"rules": {
"strict": 0,
"quotes": [2, "single"],
"comma-dangle": [2, "always-multiline"],
"eol-last": 2,
"no-trailing-spaces": 2,
"eqeqeq": 2,
"no-underscore-dangle": 0,
"space-before-function-paren": [2, {"anonymous": "always", "named": "never"}],
"no-irregular-whitespace": 2,
"react/jsx-uses-vars": 2,
"react/jsx-uses-react": 2,
"react/react-in-jsx-scope": 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment