-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheslint.config.ts
334 lines (301 loc) · 10.4 KB
/
eslint.config.ts
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
import eslint from "@eslint/js";
import { defineConfig, globalIgnores } from "eslint/config";
import globals from "globals";
// @ts-expect-error: Missing types
import eslintPluginCommentsConfigs from "@eslint-community/eslint-plugin-eslint-comments/configs";
import eslintPluginCompat from "eslint-plugin-compat";
// @ts-expect-error: Missing types
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";
// @ts-expect-error: Missing types
import eslintPluginPromise from "eslint-plugin-promise";
import eslintPluginReact from "eslint-plugin-react";
import eslintPluginReactHooks from "eslint-plugin-react-hooks";
// @ts-expect-error: Missing types
import eslintPluginReactHooksAddon from "eslint-plugin-react-hooks-addons";
import eslintPluginUnicorn from "eslint-plugin-unicorn";
import eslintPluginVitest from "@vitest/eslint-plugin";
// @ts-expect-error: Missing types
import eslintPluginOnlyError from "eslint-plugin-only-error";
// eslint-disable-next-line import/no-namespace
import * as eslintPluginMdx from "eslint-plugin-mdx";
import typescriptEslint from "typescript-eslint";
const filetypesGlob = "**/*.{ts,tsx,mts,js,cjs,mjs}";
// eslint-disable-next-line import/no-unused-modules
export default defineConfig([
eslint.configs.recommended,
typescriptEslint.configs.strictTypeChecked,
typescriptEslint.configs.stylisticTypeChecked,
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
eslintPluginCommentsConfigs.recommended,
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
eslintPluginPromise.configs["flat/recommended"],
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
eslintPluginImport.flatConfigs.recommended,
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
eslintPluginImport.flatConfigs.typescript,
eslintPluginUnicorn.configs.recommended,
globalIgnores([
"**/.*", // Ignore dotfiles
"**/coverage/**",
"**/front/**",
"**/build/**",
"client/babel.config.js",
]),
// ** Default **
{
files: [filetypesGlob],
languageOptions: {
parserOptions: {
projectService: {
allowDefaultProject: ["yarn.config.cjs"],
defaultProject: "./tsconfig.json",
},
// @ts-expect-error: FIXME FIXME FIXME
tsconfigRootDir: import.meta.dirname,
},
globals: {
...globals.node,
},
},
},
{
plugins: {
vitest: eslintPluginVitest,
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
onlyError: eslintPluginOnlyError,
},
settings: {
"import/resolver": {
typescript: true,
},
// Regex for packages that should be treated as internal
"import/internal-regex": "shared",
"import/parsers": {
"eslint-mdx": [".mdx"],
},
},
linterOptions: {
reportUnusedInlineConfigs: "error",
reportUnusedDisableDirectives: "error",
},
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
"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: [String.raw`.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
// @vitest/eslint-plugin
"vitest/no-disabled-tests": "error",
"vitest/no-focused-tests": "error",
"vitest/expect-expect": [
"error",
{ assertFunctionNames: ["expect", "assertSignupTime"] },
],
// eslint-plugin-unicorn
"unicorn/prefer-top-level-await": "off", // Top-level await not supported
"unicorn/prefer-module": "off", // import.meta not supported
"unicorn/no-useless-undefined": "off", // We return undefined for success Result without value
"unicorn/no-array-reduce": "off", // Don't want this
"unicorn/numeric-separators-style": "off", // Don't want this
"unicorn/switch-case-braces": "off", // Don't want this
"unicorn/no-lonely-if": "off", // Don't want this
"unicorn/no-null": "off", // Don't want this
"unicorn/prevent-abbreviations": "off", // Don't want this
"unicorn/filename-case": "off", // Don't want this
// @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",
"@typescript-eslint/no-unused-expressions": [
"error",
{ allowTernary: true },
],
},
},
// ** Client **
{
files: [`client/${filetypesGlob}`],
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
eslintPluginReactHooksAddon.configs.recommended,
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/${filetypesGlob}`],
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
},
},
// ** MDX support **
{
files: ["**/*.mdx"],
...eslintPluginMdx.flat,
extends: [
eslintPluginReact.configs.flat.all,
eslintPluginReact.configs.flat["jsx-runtime"],
typescriptEslint.configs.disableTypeChecked,
],
settings: {
react: {
version: "detect",
},
},
rules: {
// eslint
"no-undef": "off",
// eslint-plugin-react
"react/jsx-filename-extension": "off",
"react/jsx-no-literals": "off",
"react/jsx-max-depth": "off",
"react/jsx-curly-brace-presence": "off",
"react/no-unescaped-entities": "off",
"react/self-closing-comp": "off",
},
},
// ** eslint-config-prettier **
eslintPluginPrettierRecommended,
]);