forked from pingdotgg/t3code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
360 lines (356 loc) · 14.7 KB
/
Copy pathvite.config.ts
File metadata and controls
360 lines (356 loc) · 14.7 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
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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
import "vite-plus/test/config";
import { defineConfig } from "vite-plus";
import * as NodeURL from "node:url";
/** Import restrictions every file keeps, including the one module exempt from the glyph rule. */
const RESTRICTED_IMPORT_PATHS = [
{
name: "@t3tools/client-runtime",
message:
"Import from an explicit @t3tools/client-runtime/* subpath. The package has no root export.",
},
{
name: "@pierre/diffs/react",
importNames: ["CodeView"],
message: "Use StyledDiffCodeView so web diff surfaces share styling and virtualized geometry.",
},
];
/**
* The cva functions behind components/ui exports. They style a foreign element to look
* like a Button or Toggle, which bypasses the component's variants; render the component
* instead (`render={<Button …/>}`, or `SelectButton` for a picker trigger).
*/
const RESTRICTED_UI_VARIANT_PATTERNS = [
{
group: ["**/components/ui/*", "**/ui/*", "./ui/*"],
importNames: ["buttonVariants", "toggleVariants", "badgeVariants", "selectTriggerVariants"],
message:
"Render the components/ui export instead of borrowing its class recipe (render={<Button …/>}, SelectButton, ToggleGroup).",
},
];
/** Lucide's pull-request glyphs, which only `pullRequestIcons.tsx` may name. */
const RESTRICTED_PULL_REQUEST_GLYPH_IMPORTS = {
name: "lucide-react",
importNames: [
"GitMerge",
"GitMergeIcon",
"GitPullRequest",
"GitPullRequestIcon",
"GitPullRequestArrow",
"GitPullRequestArrowIcon",
"GitPullRequestClosed",
"GitPullRequestClosedIcon",
"GitPullRequestDraft",
"GitPullRequestDraftIcon",
"GitPullRequestCreate",
"GitPullRequestCreateIcon",
"GitPullRequestCreateArrow",
"GitPullRequestCreateArrowIcon",
],
message:
"Pick a glyph by meaning from PullRequestGlyph in apps/web/src/components/pullRequest/pullRequestIcons.tsx so every surface draws the same pull request the same way.",
};
export default defineConfig({
resolve: {
alias: {
"~": NodeURL.fileURLToPath(new URL("./apps/web/src", import.meta.url)),
},
},
test: {
environment: "node",
exclude: [
"**/.repos/**",
"**/node_modules/**",
"**/dist/**",
"**/dist-electron/**",
"**/.{idea,git,cache,output,temp}/**",
],
hookTimeout: 60_000,
testTimeout: 60_000,
setupFiles: [
NodeURL.fileURLToPath(
new URL("./packages/shared/src/testing/longTempDir.ts", import.meta.url),
),
],
},
staged: {
// Formatter only for now — no lint or typecheck on commit.
"*": "vp fmt --no-error-on-unmatched-pattern",
},
fmt: {
ignorePatterns: [
".repos/**",
// Macroscope's glob-per-line ignore grammar, not Markdown: formatting
// it rewrites `*` as `_` and joins lines.
".macroscope/ignore.md",
".alchemy",
"dist",
"dist-electron",
"node_modules",
"pnpm-lock.yaml",
"*.tsbuildinfo",
"**/routeTree.gen.ts",
"apps/mobile/android/**",
"apps/mobile/ios/**",
"apps/mobile/uniwind-types.d.ts",
"*.icon/**",
],
sortPackageJson: {},
overrides: [
{
files: [".devcontainer/devcontainer.json"],
options: {
trailingComma: "none",
},
},
],
},
lint: {
ignorePatterns: [
".repos",
".repos/**",
"dist",
"dist-electron",
"node_modules",
"pnpm-lock.yaml",
"*.tsbuildinfo",
"**/routeTree.gen.ts",
"apps/mobile/android/**",
"apps/mobile/ios/**",
"apps/mobile/uniwind-types.d.ts",
],
plugins: ["eslint", "oxc", "react", "unicorn", "typescript"],
jsPlugins: ["./oxlint-plugin-t3code/index.ts", "@shadcn/lint"],
settings: {
shadcn: { ui: "~/components/ui" },
},
categories: {
correctness: "warn",
suspicious: "warn",
perf: "warn",
},
rules: {
"unicorn/no-array-sort": "off",
"unicorn/consistent-function-scoping": "off",
"oxc/no-map-spread": "off",
"react-in-jsx-scope": "off",
"react-hooks/exhaustive-deps": "off",
"eslint/no-shadow": "off",
"eslint/no-await-in-loop": "off",
"eslint/no-underscore-dangle": "off",
"typescript/consistent-return": "off",
"typescript/no-base-to-string": "off",
"typescript/no-duplicate-type-constituents": "off",
"typescript/no-floating-promises": "off",
"typescript/no-implied-eval": "off",
"typescript/no-meaningless-void-operator": "off",
"typescript/no-redundant-type-constituents": "off",
"typescript/no-unnecessary-boolean-literal-compare": "off",
"typescript/no-unnecessary-type-conversion": "off",
"typescript/no-unnecessary-type-arguments": "off",
"typescript/no-unnecessary-type-assertion": "off",
"typescript/no-unnecessary-type-parameters": "off",
"typescript/no-unsafe-type-assertion": "off",
"typescript/await-thenable": "off",
"typescript/require-array-sort-compare": "off",
"typescript/restrict-template-expressions": "off",
"typescript/unbound-method": "off",
"eslint/no-restricted-imports": [
"error",
{ paths: [...RESTRICTED_IMPORT_PATHS, RESTRICTED_PULL_REQUEST_GLYPH_IMPORTS] },
],
"t3code/no-global-process-runtime": "error",
"t3code/no-inline-schema-compile": "warn",
"t3code/no-manual-effect-runtime-in-tests": "error",
"t3code/no-native-title-tooltip": "error",
"t3code/namespace-node-imports": "error",
},
overrides: [
{
// The one place that reads the host platform to seed the injected references.
files: ["packages/shared/src/hostProcess.ts"],
rules: { "t3code/no-global-process-runtime": "off" },
},
{
files: ["apps/web/src/**"],
excludeFiles: ["apps/web/src/components/ui/**"],
rules: {
"eslint/no-restricted-imports": [
"error",
{
paths: [...RESTRICTED_IMPORT_PATHS, RESTRICTED_PULL_REQUEST_GLYPH_IMPORTS],
patterns: RESTRICTED_UI_VARIANT_PATTERNS,
},
],
},
},
{
// The one module allowed to name lucide's pull-request glyphs; everything else picks
// from its vocabulary. The other import restrictions still apply here.
files: ["apps/web/src/components/pullRequest/pullRequestIcons.tsx"],
rules: { "eslint/no-restricted-imports": ["error", { paths: RESTRICTED_IMPORT_PATHS }] },
},
{
files: ["apps/mobile/src/**"],
rules: { "t3code/no-mobile-uniwind-theme-escape-hatches": "error" },
},
{
// Every class in web code must be one Tailwind generates: a typo or a class nothing
// declares ships silently unstyled. JS hooks use data attributes, not class names.
files: ["apps/web/src/**"],
rules: { "shadcn/no-unknown-classes": "error" },
},
{
// Colors come from theme tokens so status tones follow custom themes. components/ui
// has no findings and stays covered too.
files: ["apps/web/src/**"],
rules: { "shadcn/no-raw-colors": "error" },
},
{
// Third-party marks (brand logos, the macOS permission panes, Codex's Computer Use
// mark) must keep their exact colors, so the files that hold them are exempt.
files: ["apps/web/src/components/Icons.tsx", "apps/web/src/components/JetBrainsIcons.tsx"],
rules: { "shadcn/no-raw-colors": "off" },
},
{
// components/ui exports own their look. App code picks a variant or size instead
// of restyling with className; layout classes (width, flex, margin, position) stay
// allowed because placement belongs to the parent. components/ui is for generic
// primitives: a look that belongs to one feature stays in that feature's component.
files: ["apps/web/src/**"],
excludeFiles: ["apps/web/src/components/ui/**"],
rules: {
// A className built at runtime on a ui component is one no-restyle cannot read.
"shadcn/require-static-classes": "error",
// Appearance values come from the theme and Tailwind's scales. Layout stays free
// (placement belongs to the parent); the other entries are values no scale can hold.
"shadcn/no-arbitrary-values": [
"error",
{
allow: [
"layout",
// Which properties an element animates is per-element behaviour, like layout,
// not a design value; timing curves and durations still come from the theme.
"transition",
// Overlays that follow their frame's corner, which is set at runtime
// (floating preview) or by the element they decorate (composer outline).
"rounded-[inherit]",
// Inline chips size in em so they scale with the text they sit in
// (the composer honours the prompt font-size preference).
"gap-[0.33em]",
"px-[0.5em]",
"rounded-[0.5em]",
"text-[0.86em]",
// Project icons render from 14px to 48px and keep one proportional corner.
"rounded-[25%]",
// An emoji project icon fills its container, whatever size the parent gives it.
"text-[length:80cqh]",
// The platform's own selection colour on a selected composer chip.
"bg-[Highlight]",
// Brand marks keep their brand colours (Cursor, Grok, Claude).
"fill-[#26251E]",
"fill-[#EDECEC]",
"fill-[#0F0F0F]",
"fill-[#F5F5F5]",
"fill-[#d97757]",
"text-[#d97757]",
],
},
],
"shadcn/no-restyle": [
"error",
{
allow: ["layout"],
contracts: [
{
// CollapsibleTrigger is a bare button with no styled counterpart
// (a disclosure row is not a Button), so its className is the API.
// Every other trigger has one: style them with render={<Button …/>}.
pattern: "^CollapsibleTrigger$",
allow: ["layout", "color", "typography", "spacing", "shape", "effects", "motion"],
},
],
},
],
},
},
{
// The sign-in masthead is T3 brand artwork: fixed gradients, not theme surfaces.
files: ["apps/web/src/components/auth/AuthSurfaceShell.tsx"],
rules: { "shadcn/no-arbitrary-values": "off" },
},
{
// Shared client code must not call APIs missing from Hermes. Our ESNext
// TypeScript target accepts them even when they would crash mobile at launch.
// Tests run on Node and are exempt.
files: [
"apps/mobile/src/**",
"packages/client-runtime/src/**",
"packages/contracts/src/**",
"packages/shared/src/**",
],
excludeFiles: ["**/*.test.ts", "**/*.test.tsx"],
rules: { "t3code/no-hermes-unsupported-apis": "error" },
},
{
// Reviewed native and third-party interop boundaries that cannot consume a className.
files: [
"apps/mobile/src/features/archive/ArchivedThreadsScreen.tsx",
"apps/mobile/src/features/connection/ConnectionsNewRouteScreen.tsx",
"apps/mobile/src/features/files/FileMarkdownPreview.tsx",
"apps/mobile/src/features/files/SourceFileSurface.tsx",
"apps/mobile/src/features/files/AttachmentFileScreen.tsx",
"apps/mobile/src/features/files/ThreadFilesRouteScreen.tsx",
"apps/mobile/src/features/files/thread-file-navigator-pane.tsx",
"apps/mobile/src/features/home/HomeHeader.tsx",
"apps/mobile/src/features/review/ReviewSheet.tsx",
"apps/mobile/src/features/review/useNativeReviewDiffBridge.ts",
"apps/mobile/src/features/settings/SettingsEnvironmentsRouteScreen.tsx",
"apps/mobile/src/features/threads/GitActionProgressOverlay.tsx",
"apps/mobile/src/features/threads/NewTaskDraftScreen.tsx",
"apps/mobile/src/features/threads/ThreadComposer.tsx",
"apps/mobile/src/features/threads/ThreadFeed.tsx",
"apps/mobile/src/features/review/ReviewCommentCard.tsx",
"apps/mobile/src/features/threads/ThreadSettingsSheet.tsx",
"apps/mobile/src/features/threads/git/GitOverviewSheet.tsx",
"apps/mobile/src/features/threads/thread-list-items.tsx",
"apps/mobile/src/features/threads/thread-list-v2-items.tsx",
"apps/mobile/src/lib/useMobileNavigationTheme.ts",
"apps/mobile/src/native/T3ComposerEditor.ios.tsx",
"apps/mobile/src/native/T3ComposerEditor.native.tsx",
"apps/mobile/src/native/SelectableMarkdownText.android.tsx",
],
rules: {
"t3code/no-mobile-uniwind-theme-escape-hatches": ["error", { allowUniwindTheme: true }],
},
},
// Legacy manual Effect runners tracked as debt: no net-new occurrences.
// Lower a ceiling when you migrate a file, and delete its entry at zero.
...Object.entries({
"apps/server/src/orchestration/Layers/CheckpointReactor.test.ts": 42,
"apps/server/src/orchestration/Layers/OrchestrationEngine.test.ts": 5,
"apps/server/src/orchestration/Layers/OrchestrationReactor.test.ts": 4,
"apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts": 66,
"apps/server/src/orchestration/Layers/ProviderRuntimeIngestion.test.ts": 29,
"apps/server/src/orchestration/Layers/ThreadDeletionReactor.test.ts": 2,
"apps/server/src/orchestration/commandInvariants.test.ts": 5,
"apps/server/src/orchestration/projector.test.ts": 20,
"apps/server/src/provider/Layers/CodexAdapter.test.ts": 1,
"apps/server/src/provider/Layers/CodexSessionRuntime.test.ts": 5,
"apps/server/src/provider/Layers/CursorAdapter.test.ts": 1,
"apps/server/src/provider/Layers/CursorProvider.test.ts": 1,
"apps/server/src/provider/Layers/ProviderService.test.ts": 2,
"apps/server/src/provider/Layers/ProviderSessionReaper.test.ts": 12,
"apps/server/src/provider/acp/CursorAcpSupport.test.ts": 1,
}).map(([file, maxOccurrences]) => {
const rule: ["error", { maxOccurrences: number }] = ["error", { maxOccurrences }];
return { files: [file], rules: { "t3code/no-manual-effect-runtime-in-tests": rule } };
}),
],
options: {
reportUnusedDisableDirectives: "error",
// Revisit once Oxlint's tsgolint path can integrate with @effect/tsgo diagnostics.
typeAware: false,
typeCheck: false,
},
},
});