Skip to content

Instantly share code, notes, and snippets.

@joelbarbosa
Created July 7, 2017 13:44
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 joelbarbosa/c0b6adf510cb7e6a1abc762448b01d7a to your computer and use it in GitHub Desktop.
Save joelbarbosa/c0b6adf510cb7e6a1abc762448b01d7a to your computer and use it in GitHub Desktop.
module.exports = {
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"react",
"jsx-a11y",
"import",
"jest"
],
"globals": {
"document": true,
"window": true
},
"rules": {
"max-len": ["error", 80],
"import/extensions": ["off"],
"eslint-plugin-import": ["off", "never"],
"import/prefer-default-export": ["off", "never"],
"react/jsx-filename-extension": ["off", "never"],
"react/prefer-stateless-function": [0, { "ignorePureComponents": true }],
"react/prop-types": 0,
"arrow-body-style": 0,
"indent": [2, 2],
"react/jsx-indent": [2, 2]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment