-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc.json
144 lines (144 loc) · 3.53 KB
/
.eslintrc.json
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"env": {
"browser": true,
"es2021": true,
"jest": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:prettier/recommended",
"plugin:react/jsx-runtime",
"plugin:import/typescript"
],
"settings": {
"import/resolver": {
"node": {
"paths": ["src"],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"presets": ["@babel/preset-react"]
},
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": ["react", "react-hooks"],
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser",
"extends": ["plugin:@typescript-eslint/recommended"]
}
],
"rules": {
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"react/jsx-props-no-spreading": "off",
"react/require-default-props": "off",
"react-hooks/exhaustive-deps": "warn",
"import/prefer-default-export": "off",
"react/prop-types": "warn",
"no-param-reassign": "warn",
"no-use-before-define": "warn",
"no-unused-expressions": "warn",
"import/no-named-as-default": "warn",
"import/no-named-as-default-member": "warn",
"camelcase": "warn",
"no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
],
"no-underscore-dangle": "off",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"react/jsx-filename-extension": [1, { "extensions": [".tsx", ".jsx"] }],
"import/extensions": 0, // Turn off "Missing file extension for ..." error
"import/order": [
"error",
{
"alphabetize": {
"order": "asc",
"caseInsensitive": true
},
"newlines-between": "always",
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index",
"object"
],
"pathGroups": [
{
"pattern": "components/**",
"group": "internal",
"position": "before"
},
{
"pattern": "constants/**",
"group": "internal",
"position": "before"
},
{
"pattern": "contexts/**",
"group": "internal",
"position": "before"
},
{
"pattern": "hooks/**",
"group": "internal",
"position": "before"
},
{
"pattern": "layouts/**",
"group": "internal",
"position": "before"
},
{
"pattern": "routing/**",
"group": "internal",
"position": "before"
},
{
"pattern": "services/**",
"group": "internal",
"position": "before"
},
{
"pattern": "styles/**",
"group": "internal",
"position": "before"
},
{
"pattern": "templates/**",
"group": "internal",
"position": "before"
},
{
"pattern": "utils/**",
"group": "internal",
"position": "before"
}
]
}
]
},
"globals": {
"cy": "readonly",
"Cypress": "readonly",
"describe": "readonly",
"it": "readonly",
"after": "readonly",
"before": "readonly"
}
}