Skip to content

Instantly share code, notes, and snippets.

@leonardfactory
Created July 21, 2016 13:10
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 leonardfactory/21c5364b93af07c75452b8b4b7552e6d to your computer and use it in GitHub Desktop.
Save leonardfactory/21c5364b93af07c75452b8b4b7552e6d to your computer and use it in GitHub Desktop.
.eslintrc.json
{
"parser": "babel-eslint",
"extends": "airbnb",
"plugins": [
"react",
"flowtype"
],
"rules": {
"react/sort-comp": 0,
"key-spacing": [2, { "align": "colon" }],
"no-console": 0,
"brace-style": [2, "stroustrup"],
"no-unused-vars": [2, { "argsIgnorePattern": "^_" }]
},
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment