Skip to content

Instantly share code, notes, and snippets.

@reatexpk
Last active June 5, 2019 13:42
Show Gist options
  • Save reatexpk/ad3378d615fda027f6cc160c0bbec449 to your computer and use it in GitHub Desktop.
Save reatexpk/ad3378d615fda027f6cc160c0bbec449 to your computer and use it in GitHub Desktop.
Javascript React eslint-config
{
"parser": "babel-eslint",
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"plugins": ["react", "prettier", "react-hooks"],
"rules": {
"react/jsx-filename-extension": 0,
"react/prop-types": 0,
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
}
],
"max-len": ["error", 80],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"env": {
"browser": true
},
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": ["node_modules", "src/"]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment