Created
November 19, 2021 00:00
-
-
Save quinn/fb10ea947b8c78a08c33e3b584cd053e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": [ | |
"eslint:recommended", | |
"plugin:react/recommended", | |
"standard" | |
], | |
"root": true, | |
"rules": { | |
"jsx-quotes": "error", | |
"indent": ["error", "tab"], | |
"no-tabs": "off", | |
"react/prop-types": "off", | |
"no-unused-vars": "warn", | |
"react/no-unescaped-entities": "warn", | |
"no-constant-condition": "warn" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment