-
Notifications
You must be signed in to change notification settings - Fork 2
/
eslint.config.mjs
268 lines (246 loc) · 8.44 KB
/
eslint.config.mjs
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
// @ts-check
import eslint from "@eslint/js";
import globals from "globals";
import eslintPluginCommentsConfigs from "@eslint-community/eslint-plugin-eslint-comments/configs";
import eslintPluginCompat from "eslint-plugin-compat";
import eslintPluginImport from "eslint-plugin-import";
import eslintPluginJsxA11y from "eslint-plugin-jsx-a11y";
import eslintPluginN from "eslint-plugin-n";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
import eslintPluginPromise from "eslint-plugin-promise";
import eslintPluginReact from "eslint-plugin-react";
import eslintPluginReactHooks from "eslint-plugin-react-hooks";
import eslintPluginReactHooksAddon from "eslint-plugin-react-hooks-addons";
import eslintPluginUnicorn from "eslint-plugin-unicorn";
import eslintPluginVitest from "eslint-plugin-vitest";
import eslintPluginOnlyError from "eslint-plugin-only-error";
import typescriptEslint from "typescript-eslint";
export default typescriptEslint.config(
eslint.configs.recommended,
...typescriptEslint.configs.strictTypeChecked,
...typescriptEslint.configs.stylisticTypeChecked,
eslintPluginCommentsConfigs.recommended,
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
eslintPluginPromise.configs["flat/recommended"],
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
eslintPluginImport.flatConfigs.recommended,
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-member-access
eslintPluginImport.flatConfigs.typescript,
eslintPluginReactHooksAddon.configs.recommended,
// ** Default **
{
languageOptions: {
parserOptions: {
projectService: {
allowDefaultProject: [
"eslint.config.mjs",
"yarn.config.cjs",
"client/babel.config.js",
],
defaultProject: "./tsconfig.json",
},
tsconfigRootDir: import.meta.dirname,
},
globals: {
...globals.node,
},
},
},
{
ignores: [
"**/.*", // Ignore dotfiles
"**/coverage/**",
"**/front/**",
"**/build/**",
],
},
{
plugins: {
vitest: eslintPluginVitest,
unicorn: eslintPluginUnicorn,
onlyError: eslintPluginOnlyError,
},
settings: {
"import/resolver": {
typescript: true,
},
// Regex for packages that should be treated as internal
"import/internal-regex": "shared",
},
rules: {
...eslintPluginVitest.configs.recommended.rules,
// eslint
"no-param-reassign": "error",
"no-console": "error",
"object-shorthand": "error",
"no-restricted-syntax": [
"error",
{
selector: "ThrowStatement", // We don't throw errors!
message: "Return Result<T,Err> instead of throwing errors",
},
{
selector: "MemberExpression[property.name='format']",
message: "Import from timeFormatter.ts or use dayjs().toISOString",
},
{
selector: "CallExpression[callee.name='useDispatch']",
message: "Please use useAppDispatch()",
},
{
selector: "CallExpression[callee.name='useSelector']",
message: "Please use useAppSelector()",
},
],
"no-else-return": "error",
curly: "error",
// eslint-plugin-import
// TODO: Enable, doesn't work with flat config yet https://github.com/import-js/eslint-plugin-import/issues/2964
// "import/no-unused-modules": ["error", { unusedExports: true }],
"import/order": ["error", { groups: ["builtin", "external"] }],
"import/no-namespace": [
"error",
{
ignore: [
"padgAssignment", // Needs wildcard import for vi.spyOn()
"randomAssignment", // Needs wildcard import for vi.spyOn()
"signupTimes", // Needs wildcard import for vi.spyOn()
],
},
], // Don't want to use namespace imports
"import/no-unresolved": ["error", { ignore: ["\\.gif$"] }],
"import/namespace": "off", // Don't want to use namespace imports
"import/no-named-as-default": "off", // Doesn't work with styled-components
"import/no-named-as-default-member": "off", // Doesn't work with i18next.use()
"import/default": "off", // Doesn't work with prettier default import
// eslint-plugin-vitest
"vitest/no-disabled-tests": "error",
"vitest/no-focused-tests": "error",
"vitest/expect-expect": [
"error",
{ assertFunctionNames: ["expect", "assertSignupTime"] },
],
// @typescript-eslint
"@typescript-eslint/explicit-module-boundary-types": "error",
"@typescript-eslint/explicit-function-return-type": [
"error",
{ allowExpressions: true },
],
"@typescript-eslint/require-array-sort-compare": [
"error",
{ ignoreStringArrays: true },
],
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/naming-convention": [
"error",
{
selector: "interface",
format: ["PascalCase"],
},
],
"@typescript-eslint/no-unused-vars": [
"error",
{ vars: "all", args: "all", argsIgnorePattern: "^_" },
],
"@typescript-eslint/no-restricted-imports": [
"error",
{
paths: [
{
name: "react",
importNames: ["default"],
message: "Please use named imports, e.g. { useEffect }",
},
],
patterns: [
{
group: ["../*"],
message: "Relative import (../) not allowed, use absolute import",
},
],
},
],
"@typescript-eslint/restrict-template-expressions": [
"error",
{ allowArray: true, allowNumber: true },
],
"@typescript-eslint/no-deprecated": "error",
},
},
// ** Client **
{
files: ["client/**"],
extends: [
// 'recommended' configuration is not recommended anymore, use 'all' and disable some rules
eslintPluginReact.configs.flat.all,
// Disable some rules conflicting with new JSX transform from React 17
eslintPluginReact.configs.flat["jsx-runtime"],
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
eslintPluginJsxA11y.flatConfigs.recommended,
eslintPluginCompat.configs["flat/recommended"],
],
plugins: {
react: eslintPluginReact,
"react-hooks": eslintPluginReactHooks,
},
settings: {
react: {
version: "detect",
},
},
rules: {
// eslint-plugin-react
"react/forbid-elements": [
"error",
{ forbid: [{ element: "button", message: "use <Button> instead" }] },
],
"react/function-component-definition": "off",
"react/jsx-filename-extension": "off",
"react/jsx-no-leaked-render": "off",
"react/jsx-no-bind": "off",
"react/jsx-sort-props": "off",
"react/jsx-max-depth": "off",
"react/jsx-curly-brace-presence": "off",
"react/jsx-props-no-spreading": "off",
"react/jsx-no-literals": "off",
"react/prefer-read-only-props": "off",
"react/jsx-boolean-value": "off",
"react/require-default-props": "off",
"react/no-unused-prop-types": "off",
"react/destructuring-assignment": "off",
"react/forbid-component-props": "off",
// eslint-plugin-react-hooks
...eslintPluginReactHooks.configs.recommended.rules,
"react-hooks/exhaustive-deps": "error",
// eslint-plugin-react-hooks-addons
"react-hooks-addons/no-unused-deps": "error",
// @typescript-eslint
"@typescript-eslint/no-misused-promises": [
"error",
{
checksVoidReturn: {
attributes: false, // https://github.com/typescript-eslint/typescript-eslint/pull/4623
},
},
],
"@typescript-eslint/no-confusing-void-expression": [
"error",
{
ignoreArrowShorthand: true,
},
],
},
},
// ** Server **
{
files: ["server/**"],
extends: [eslintPluginN.configs["flat/recommended"]],
rules: {
// eslint-plugin-n
"n/no-missing-import": "off", // Handled by tsc
"n/no-extraneous-import": "off", // Doesn't work with Yarn workspace dependencies
},
},
// Enables eslint-config-prettier
eslintPluginPrettierRecommended,
);