Skip to content

Instantly share code, notes, and snippets.

@lukemorton
Created December 3, 2015 15:58
Show Gist options
  • Save lukemorton/0208819f9647b160cb12 to your computer and use it in GitHub Desktop.
Save lukemorton/0208819f9647b160cb12 to your computer and use it in GitHub Desktop.
{
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"curly": 0,
"comma-dangle": [2, "always-multiline"],
"comma-spacing": 0,
"eqeqeq": [2, "allow-null"],
"key-spacing": 0,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-shadow": 0,
"no-shadow-restricted-names": 0,
"no-extend-native": 0,
"no-var": 2,
"new-cap": 0,
"quotes": 0,
"semi": [2, "always"],
"semi-spacing": 0,
"space-unary-ops": 0,
"space-infix-ops": 0,
"consistent-return": 0,
"strict": 0,
"indent": [2, 2],
"jsx-quotes": [2, "prefer-double"],
"react/jsx-boolean-value": 2,
"react/jsx-curly-spacing": [2, "never"],
"react/jsx-max-props-per-line": [2, { "maximum": 4 }],
"react/jsx-no-duplicate-props": 2,
"react/jsx-no-undef": 2
},
"parser": "babel-eslint",
"plugins": [
"react"
],
"ecmaFeatures": {
"jsx": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment