Skip to content

Instantly share code, notes, and snippets.

@daneharrigan
Created May 25, 2017 18:15
Show Gist options
  • Save daneharrigan/b4b469823771f67f4890ac54922404ae to your computer and use it in GitHub Desktop.
Save daneharrigan/b4b469823771f67f4890ac54922404ae to your computer and use it in GitHub Desktop.
module.exports = {
"extends": "airbnb",
"plugins": [
"react",
],
"parser": "babel-eslint",
"rules": {
"jsx-a11y/alt-text": 1,
"jsx-a11y/aria-role": 1,
"jsx-a11y/img-redundant-alt": 1,
"jsx-a11y/no-access-key": 1,
"jsx-quotes": 1,
"no-multi-spaces": 1,
"react/jsx-boolean-value": 1,
"react/jsx-closing-bracket-location": 1,
"react/jsx-curly-spacing": 1,
"react/jsx-no-bind": 1,
"react/jsx-pascal-case": 1,
"react/jsx-tag-spacing": 1,
"react/jsx-wrap-multilines": 1,
"react/no-is-mounted": 1,
"react/no-string-refs": 1,
"react/prefer-es6-class": 1,
"react/prefer-stateless-function": 1,
"react/require-render-return": 1,
"react/self-closing-comp": 1,
"react/sort-comp": 1,
"semi": 1,
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true,
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment