Skip to content

Instantly share code, notes, and snippets.

@fegvilela
Created September 29, 2020 20:10
Show Gist options
  • Save fegvilela/5252653ea2282eefa3d084fc4c5747d3 to your computer and use it in GitHub Desktop.
Save fegvilela/5252653ea2282eefa3d084fc4c5747d3 to your computer and use it in GitHub Desktop.
style guide for eslint
{
"parser": "babel-eslint",
"env": {
"browser": true,
"jest": true
},
"plugins": ["react", "jsx-a11y", "import"],
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": [
"error",
{
"extensions": [".js", ".jsx"]
}
],
"global-require": "off",
"import/prefer-default-export": "off",
"no-unused-expressions": ["error", { "allowTaggedTemplates": true }]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment