Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created June 20, 2019 11:26
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 luandevpro/22ed5c63a12decc52d7551082348a578 to your computer and use it in GitHub Desktop.
Save luandevpro/22ed5c63a12decc52d7551082348a578 to your computer and use it in GitHub Desktop.
{
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"rules": {
"no-shadow": "off",
"global-require": "off",
"no-console": "off",
"import/no-extraneous-dependencies": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"jsx-a11y/anchor-is-valid": "off",
"no-underscore-dangle": "off",
"prefer-promise-reject-errors": "off",
"no-nested-ternary": "off",
"react/no-multi-comp": "off",
"react/no-unescaped-entities": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"no-use-before-define": ["error", {
"variables": false
}],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"prettier/prettier": [
"error",
{
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100
}
]
},
"plugins": [
"prettier"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment