Skip to content

Instantly share code, notes, and snippets.

@alvinthen
Created October 25, 2017 06:21
Show Gist options
  • Save alvinthen/58bd2b4c55dac388f5162f1685660704 to your computer and use it in GitHub Desktop.
Save alvinthen/58bd2b4c55dac388f5162f1685660704 to your computer and use it in GitHub Desktop.
eslint config
{
"parser": "babel-eslint",
"plugins":[
"flowtype"
],
"extends": [
"airbnb",
"plugin:flowtype/recommended"
],
"rules": {
"react/jsx-filename-extension": 0,
"class-methods-use-this": 0,
"react/default-props-match-prop-types": 0
},
"globals": {
"__DEV__": true
},
"env": {
"browser": true,
"jest": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment