Skip to content

Instantly share code, notes, and snippets.

@ninezero90hy
Created September 3, 2021 12:48
Show Gist options
  • Save ninezero90hy/a971d302ff14b9b23f41c462b96c66f0 to your computer and use it in GitHub Desktop.
Save ninezero90hy/a971d302ff14b9b23f41c462b96c66f0 to your computer and use it in GitHub Desktop.
{
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"rules": {
"semi": [
"error",
"always"
],
"quotes": [
"error",
"single"
],
"no-unused-vars": [
"error"
]
},
"settings": {
"react": {
"pragma": "React",
"version": "17.0.2"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment