Skip to content

Instantly share code, notes, and snippets.

@darrylhebbes
Last active August 31, 2023 11:39
Show Gist options
  • Save darrylhebbes/157339d0cdf550a9b6e3f58c33c11436 to your computer and use it in GitHub Desktop.
Save darrylhebbes/157339d0cdf550a9b6e3f58c33c11436 to your computer and use it in GitHub Desktop.
{
"root": true,
"env": {
"browser": true,
"es2021": true
},
"extends": ["airbnb-base", "airbnb/rules/react", "prettier"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": { "jsx": true }
},
"plugins": ["prettier"],
"rules": {
"import/prefer-default-export": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never"
}
],
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment