Last active
April 26, 2020 12:52
-
-
Save annguyenwasd/55d95e1cd405b78e8a29ee4bd2ea003f 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, | |
"es6": true, | |
"node": true | |
}, | |
"extends": [ | |
"eslint:recommended", | |
"plugin:prettier/recommended", | |
"plugin:react/recommended", | |
"plugin:react-hooks/recommended" | |
], | |
"globals": { | |
"Atomics": "readonly", | |
"SharedArrayBuffer": "readonly" | |
}, | |
"parserOptions": { | |
"ecmaFeatures": { | |
"jsx": true | |
}, | |
"ecmaVersion": 2018, | |
"sourceType": "module" | |
}, | |
"plugins": ["react", "prettier"], | |
"rules": { | |
"react/function-component-definition": [ | |
2, | |
{ "namedComponents": "arrow-function" } | |
], | |
"no-var": "error", | |
"prefer-const": "error" | |
}, | |
"settings": { | |
"react": { | |
"version": "detect" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment