Skip to content

Instantly share code, notes, and snippets.

@stupoid
Created June 1, 2017 08:35
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 stupoid/629f146104a9f151ec53470c1b0c3156 to your computer and use it in GitHub Desktop.
Save stupoid/629f146104a9f151ec53470c1b0c3156 to your computer and use it in GitHub Desktop.
react eslint config
{
"extends": "airbnb",
"plugins": [
"react",
"jsx-a11y",
"import"
],
"env": {
"browser": true,
"node": true
},
"globals": {
"it": true
},
"rules": {
"react/jsx-filename-extension": [1, {
"extensions": [".js", ".jsx"]
}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment