Created
September 13, 2021 14:36
-
-
Save red-star25/d2e2c2787e7a4db7259e0c2745745cc1 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
{ | |
"env": { | |
"browser": true, | |
"es2021": true | |
}, | |
"extends": ["eslint:recommended", "plugin:react/recommended"], | |
"settings": { | |
"react": { | |
"version": "detect" | |
} | |
}, | |
"parserOptions": { | |
"ecmaFeatures": { | |
"jsx": true | |
}, | |
"ecmaVersion": 12, | |
"sourceType": "module" | |
}, | |
"plugins": ["react"], | |
"rules": { | |
"react/react-in-jsx-scope": "off", | |
"indent": ["error", 4], | |
"linebreak-style": ["error", "unix"], | |
"quotes": ["error", "double"], | |
"semi": ["error", "always"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment