Skip to content

Instantly share code, notes, and snippets.

@qnub
Created August 5, 2015 06:13
Show Gist options
  • Save qnub/5d680ab96e428e97fb07 to your computer and use it in GitHub Desktop.
Save qnub/5d680ab96e428e97fb07 to your computer and use it in GitHub Desktop.
.eslintrc
{
"parser": "babel-eslint",
"ecmaFeatures": {
"blockBindings": true,
"forOf": true,
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true,
"meteor": true,
"jquery": true,
"es6": true
},
"globals": {
"meteor": true,
"React": true
},
"rules": {
"strict": 0,
"quotes": [2, "single"],
"eol-last": [0],
"yoda": 0,
"semi": 0,
"curly": 0,
"no-undef": 0,
"no-use-before-define": 0,
"no-unused-vars": 0,
"no-mixed-requires": [0],
"no-underscore-dangle": [0],
"react/jsx-boolean-value": 1,
"react/jsx-no-duplicate-props": 1,
"react/jsx-no-undef": 0,
"react/jsx-quotes": 1,
"react/jsx-sort-prop-types": 1,
"react/jsx-sort-props": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-danger": 1,
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-multi-comp": 1,
"react/no-unknown-property": 1,
"react/prop-types": 1,
"react/react-in-jsx-scope": 1,
"react/require-extension": 1,
"react/self-closing-comp": 1,
"react/sort-comp": 1,
"react/wrap-multilines": 1
},
"plugins": [
"react"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment