-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.mjs
More file actions
250 lines (230 loc) · 7.26 KB
/
eslint.config.mjs
File metadata and controls
250 lines (230 loc) · 7.26 KB
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
import js from "@eslint/js";
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import typescriptParser from "@typescript-eslint/parser";
import unusedImportsPlugin from "eslint-plugin-unused-imports";
import promisePlugin from "eslint-plugin-promise";
import eslintCommentsPlugin from "@eslint-community/eslint-plugin-eslint-comments";
export default [
js.configs.recommended,
{
ignores: [
".next/**",
"node_modules/**",
"out/**",
"dist/**",
".archived_v1/**",
"*.config.js",
"*.config.mjs",
"*.config.ts",
"*.config.cjs",
"src/app/(app)/mockup/**",
"src/components/mockups/**",
],
},
{
files: ["**/*.ts", "**/*.tsx"],
plugins: {
"@typescript-eslint": typescriptEslint,
"unused-imports": unusedImportsPlugin,
promise: promisePlugin,
"eslint-comments": eslintCommentsPlugin,
},
languageOptions: {
parser: typescriptParser,
parserOptions: {
project: "./tsconfig.json",
tsconfigRootDir: import.meta.dirname,
},
globals: {
process: "readonly",
// Browser globals for client components
document: "readonly",
window: "readonly",
navigator: "readonly",
console: "readonly",
fetch: "readonly",
},
},
rules: {
// TypeScript recommended rules
...typescriptEslint.configs["recommended-type-checked"].rules,
...typescriptEslint.configs["stylistic-type-checked"].rules,
// ===== Code Quality =====
// Unused imports - catches dead code
"@typescript-eslint/no-unused-vars": "off", // Disabled in favor of unused-imports
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
vars: "all",
varsIgnorePattern: "^_",
args: "after-used",
argsIgnorePattern: "^_",
},
],
// Explicit return types - prevents inference errors
"@typescript-eslint/explicit-function-return-type": [
"error",
{
allowExpressions: true,
allowTypedFunctionExpressions: true,
allowHigherOrderFunctions: true,
allowDirectConstAssertionInArrowFunctions: true,
},
],
// ===== Import Organization =====
// Type imports - cleaner imports
"@typescript-eslint/consistent-type-imports": [
"error",
{
prefer: "type-imports",
fixStyle: "inline-type-imports",
},
],
// Prevent deep relative imports - use path aliases
"no-restricted-imports": [
"error",
{
patterns: [
{
group: ["../../*", "../../../*", "../../../../*"],
message:
"Use '~/' path alias instead of deep relative imports (../../). This improves maintainability and prevents broken imports when files are moved.",
},
],
},
],
// ===== TypeScript Safety =====
// Strict any prevention
"@typescript-eslint/no-explicit-any": "error",
// Unnecessary condition checks (catches bugs)
"@typescript-eslint/no-unnecessary-condition": "error",
// Promise handling - prevents fire-and-forget bugs
"@typescript-eslint/no-misused-promises": [
"error",
{
checksVoidReturn: {
attributes: false, // Allow async event handlers in JSX
},
},
],
"@typescript-eslint/no-floating-promises": "error",
// Ban problematic TypeScript comments
"@typescript-eslint/ban-ts-comment": [
"error",
{
"ts-expect-error": "allow-with-description",
"ts-ignore": true,
"ts-nocheck": true,
"ts-check": false,
minimumDescriptionLength: 10,
},
],
// ===== Promise Best Practices =====
"promise/catch-or-return": ["error", { allowFinally: true }],
"promise/no-nesting": "warn",
"promise/no-promise-in-callback": "warn",
"promise/no-callback-in-promise": "warn",
"promise/no-return-wrap": "error",
// ===== ESLint Comments =====
// Prevent disabling strict type checks
"eslint-comments/no-restricted-disable": [
"error",
"@typescript-eslint/no-explicit-any",
"@typescript-eslint/no-unsafe-*",
],
// Require description for all disable comments
"eslint-comments/require-description": ["error", { ignore: [] }],
// Remove stale disable comments
"eslint-comments/no-unused-disable": "error",
},
},
{
// Test files use different tsconfig
files: [
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"src/test/**/*",
"e2e/**/*",
],
languageOptions: {
parser: typescriptParser,
parserOptions: {
project: "./tsconfig.tests.json",
tsconfigRootDir: import.meta.dirname,
},
globals: {
// E2E tests run in Playwright (Node + browser APIs)
fetch: "readonly",
setTimeout: "readonly",
process: "readonly",
console: "readonly",
},
},
rules: {
// Allow any in tests for mocking
"@typescript-eslint/no-explicit-any": "off",
// Allow floating promises in tests (Vitest handles them)
"@typescript-eslint/no-floating-promises": "off",
// No explicit return types needed in tests
"@typescript-eslint/explicit-function-return-type": "off",
// Allow unused vars in tests (setup functions)
"unused-imports/no-unused-vars": "off",
// Disable strict type checks in tests (mocking often violates these)
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/unbound-method": "off",
// Allow disabling rules in tests if needed (mocking often requires it)
"eslint-comments/no-restricted-disable": "off",
},
},
{
// E2E-only anti-patterns
files: ["e2e/**/*"],
rules: {
"no-restricted-properties": [
"warn",
{
object: "page",
property: "waitForTimeout",
message:
"Use Playwright assertions (auto-wait) instead of waitForTimeout",
},
],
"no-restricted-syntax": [
"warn",
{
selector: "Literal[value=/.*@test\\.com/]",
message:
"Use TEST_USERS constants instead of hardcoded @test.com emails (getTestEmail() args are a known false positive)",
},
{
selector: "TemplateElement[value.raw=/.*@test\\.com/]",
message:
"Use TEST_USERS constants instead of hardcoded @test.com emails",
},
],
},
},
{
// Relaxed rules for config files
files: [
"*.config.ts",
"*.config.js",
"*.config.mjs",
"*.config.cjs",
"scripts/**/*",
],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"no-restricted-imports": "off",
"eslint-comments/no-restricted-disable": "off",
},
},
];