-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.eslintrc.cjs
36 lines (36 loc) · 926 Bytes
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module.exports = {
env: {
browser: true,
es2020: true,
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:storybook/recommended",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["react-refresh", "prefer-arrow-functions"],
rules: {
"react-refresh/only-export-components": "warn",
"no-multiple-empty-lines": "error",
quotes: ["error", "double"],
"arrow-parens": ["error", "as-needed"],
"prefer-arrow-functions/prefer-arrow-functions": [
"warn",
{
classPropertiesAllowed: false,
disallowPrototype: false,
returnStyle: "unchanged",
singleReturnOnly: false,
},
],
"react-hooks/exhaustive-deps": ["warn", {
"additionalHooks": "(useUpdateEffect)"
}]
},
};