-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
85 lines (85 loc) · 1.98 KB
/
.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
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
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
ignorePatterns: ["build/**", "coverage/**"],
extends: [
"react-app",
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:jsx-a11y/recommended",
"plugin:react-hooks/recommended",
"plugin:import/recommended",
],
rules: {
"import/no-anonymous-default-export": [
"error",
{ allowAnonymousFunction: true },
],
},
settings: {
react: { version: "detect" },
"import/resolver": {
node: true,
typescript: true,
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
},
overrides: [
{
/**
* Typescript files (see https://typescript-eslint.io/docs/)
*/
files: ["**/*.{ts,tsx}"],
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigRootDir: __dirname,
project: ["./tsconfig.json"],
},
plugins: ["@typescript-eslint"],
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:import/typescript",
],
rules: {
"import/named": "off",
"import/namespace": "off",
"import/default": "off",
"import/no-named-as-default-member": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-floating-promises": [
"error",
{
ignoreVoid: true,
ignoreIIFE: true,
},
],
"@typescript-eslint/no-misused-promises": [
"error",
{
checksVoidReturn: {
arguments: false,
attributes: false,
},
},
],
},
},
{
/**
* Test files
*/
files: ["**/*.test.{js,jsx,ts,tsx}"],
extends: ["react-app/jest"],
rules: {
"jest/prefer-spy-on": "warn",
},
},
],
};