Skip to content

Instantly share code, notes, and snippets.

@guilhermeslk
Created January 17, 2018 20:05
Show Gist options
  • Save guilhermeslk/de8010532b6e3cf29658a52045ded497 to your computer and use it in GitHub Desktop.
Save guilhermeslk/de8010532b6e3cf29658a52045ded497 to your computer and use it in GitHub Desktop.
module.exports = {
"env": {
"browser": true,
"node": true
},
"plugins": [
"babel",
"react"
],
"parser": "babel-eslint",
"rules": {
"jsx-a11y/anchor-is-valid": ["error", {
"components": ["Link"],
"specialLink": ["hrefLeft", "hrefRight"],
"aspects": ["invalidHref", "preferButton"]
}],
"react/prefer-stateless-function": "off",
"react/jsx-filename-extension": [1, {"extensions": [".js", ".jsx"]}]
},
"extends": "airbnb"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment