-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
executable file
·100 lines (100 loc) · 2.41 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
99
100
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"jest": true
},
"settings": {
"react": {
"version": "detect"
},
"import/extensions": [".js", ".jsx", ".ts", ".tsx"],
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"project": "tsconfig.json"
}
}
},
"extends": [
"standard",
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:promise/recommended",
"plugin:jsx-a11y/recommended",
"plugin:import/errors",
"plugin:import/typescript",
"prettier",
"plugin:prettier/recommended",
"plugin:jest-dom/recommended",
"plugin:testing-library/react",
"plugin:jest/recommended",
"plugin:jest/style"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react",
"react-hooks",
"@typescript-eslint",
"promise",
"prettier",
"jest-dom",
"testing-library",
"jest",
"jsx-a11y"
],
"rules": {
"no-console": "error",
"react/jsx-filename-extension": [
1,
{
"extensions": [".ts", ".tsx"]
}
],
"react/function-component-definition": [
"error",
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "error",
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"jsx-a11y/anchor-is-valid": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint-in-jsx-scope": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"space-before-function-paren": "off",
"eslint-disable-next-line": "off",
"react/display-name": "off",
"prettier/prettier": "error"
},
"overrides": [
{
"files": ["**/__tests__/**/*.tsx?", "**/?(*.)+(spec|test).tsx?"],
"plugins": ["jest-dom", "testing-library", "jest"],
"extends": [
"plugin:jest-dom/recommended",
"plugin:testing-library/react",
"plugin:jest/recommended",
"plugin:jest/style"
]
}
]
}