-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
98 lines (98 loc) · 2.16 KB
/
.eslintrc
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"parser": "@typescript-eslint/parser",
"extends": [
"airbnb",
"prettier",
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"react/prop-types": 0,
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"react/forbid-prop-types": "off",
"react/react-in-jsx-scope": "off",
"import/no-cycle": "off",
"import/prefer-default-export": "off",
"import/extensions": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"no-plusplus": "off",
"react/jsx-props-no-spreading": "off",
"no-console": "off",
"consistent-return": "off",
"import/no-named-as-default": 0,
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
}
],
"jsx-quotes": [
2,
"prefer-double"
],
"prettier/prettier": [
"error",
{
"trailingComma": "es5",
"singleQuote": false,
"printWidth": 100
}
],
"import/no-extraneous-dependencies": [
"error",
{
"packageDir": "./",
"devDependencies": [
"setupTests.js",
"**/__tests__/**"
]
}
],
"import/no-unresolved": "off", // https://github.com/import-js/eslint-plugin-import/blob/main/docs/rules/no-unresolved.md#when-not-to-use-it
"import/no-import-module-exports": "off",
"no-use-before-define": ["error", {
"functions": false,
"classes": true,
"variables": true,
"allowNamedExports": false
}],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
},
"plugins": [
"prettier",
"jest",
"react-hooks",
"@typescript-eslint"
],
"root": true,
"env": {
"jest/globals": true,
"browser": true
},
"overrides": [
{
"files": [
"reducer.js"
],
"excludedFiles": "e2e/*",
"rules": {
"default-param-last": 0
}
}
]
}