Skip to content

Instantly share code, notes, and snippets.

@marceloag
Created December 10, 2021 13:28
Show Gist options
  • Save marceloag/e2bd138dab9309b3d334db57052c45bf to your computer and use it in GitHub Desktop.
Save marceloag/e2bd138dab9309b3d334db57052c45bf to your computer and use it in GitHub Desktop.
Eslint Config
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugins:react-hooks/recommended",
"prettier"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"prettier"
],
"rules": {
"prettier/prettier": "error",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment