-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
157 lines (157 loc) · 4.52 KB
/
Copy pathknip.json
File metadata and controls
157 lines (157 loc) · 4.52 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
{
"$schema": "https://unpkg.com/knip@latest/schema.json",
"entry": [
"apps/desktop/src/main.tsx",
"apps/desktop/src/App.tsx",
"apps/desktop/src/lib/verify-cli.ts",
"apps/desktop/src/lib/warm-verification/daemon-entry.ts",
"apps/desktop/src/lib/intent-debugger/run-intent-cli.ts",
"apps/desktop/src/lib/synthetic-qa/run-fixture-cli.ts"
],
"project": ["**/*.{ts,tsx,js,jsx,mjs,cjs,mts}"],
"ignore": [
"**/dist/**",
"**/build/**",
"**/.next/**",
"**/.astro/**",
"**/.output/**",
"**/node_modules/**",
"**/coverage/**",
"**/public/**",
"**/*.config.{js,ts,mjs,cjs}",
"**/eslint.config.*",
"**/blume.config.*",
"**/docs-blume/**",
"**/docs-site/**",
"scripts/**",
"**/scripts/**",
"tests/e2e/**",
"**/tests/**",
"test/**",
"**/*.test.{ts,tsx,js,mjs}",
"**/*.spec.{ts,tsx,js,mjs}",
"**/*.d.mts",
"**/*.d.ts",
"**/__tests__/**",
"**/playground/**",
"**/examples/**",
"**/fixtures/**",
"**/verify/**",
"benchmark/**",
"benchmarks/**",
"openspec/**",
"research/**",
"**/worker.mjs",
"**/src-tauri/**"
],
"ignoreDependencies": [
"typescript",
"@types/*",
"biome",
"@biomejs/biome",
"prettier",
"prettier-plugin-tailwindcss",
"husky",
"lint-staged",
"vitest",
"@vitest/*",
"playwright",
"@playwright/test",
"tailwindcss",
"@tailwindcss/*",
"lightningcss",
"tsx",
"size-limit",
"knip",
"blume",
"@blume/*",
"astro",
"@astrojs/*",
"@shikijs/*",
"shiki",
"wrangler",
"@tauri-apps/cli",
"@tauri-apps/api",
"@tauri-apps/plugin-*",
"@vitejs/plugin-react",
"vite",
"autoprefixer",
"postcss",
"c8",
"msw",
"yaml",
"class-variance-authority",
"clsx",
"tailwind-merge",
"tailwindcss-animate",
"@radix-ui/*",
"lucide-react",
"react",
"react-dom",
"react-router-dom",
"react-resizable-panels",
"@xterm/*",
"@axe-core/playwright",
"ccusage"
],
"ignoreBinaries": [
"astro",
"vite",
"wrangler",
"tsx",
"biome",
"playwright",
"knip",
"prettier",
"blume",
"tauri",
"lsof",
"netstat",
"ps",
"rustc",
"cargo",
"swift"
],
"ignoreIssues": {
"src/app/api/**/route.ts": ["exports", "types"],
"src/lib/actions/**": ["exports", "types"],
"lib/actions/**": ["exports", "types"],
"**/schema.ts": ["exports", "types"],
"**/db/schema*.ts": ["exports", "types"],
"**/commands/**": ["exports", "types"],
"**/agent-edge.*": ["exports", "types"],
"**/foundry-monitoring.ts": ["exports", "types"],
"**/analytics.ts": ["exports", "types"],
"**/api-timing.ts": ["exports", "types"],
"**/contracts.ts": ["exports", "types"],
"**/differential-contracts.ts": ["exports", "types"],
"**/differential-daemon-contracts.ts": ["exports", "types"],
"**/differential-plan.ts": ["exports", "types"],
"**/differential-config.ts": ["exports", "types"],
"**/differential-source.ts": ["exports", "types"],
"**/differential-comparator.ts": ["exports", "types", "duplicates"],
"**/differential-timing-policy.ts": ["exports", "types"],
"**/differential-scheduler.ts": ["exports", "types"],
"**/qualification-policy.ts": ["exports", "types"],
"**/tauri-ipc.ts": ["exports", "types"],
"**/verification-state-bridge.ts": ["exports", "types"],
"**/warm-verification/config.ts": ["exports", "types"],
"**/warm-verification/config-loader.ts": ["exports", "types"],
"**/warm-verification/contracts.ts": ["exports", "types"],
"**/warm-verification/adapters.ts": ["exports", "types"],
"**/warm-verification/change-set.ts": ["exports", "types"],
"**/warm-verification/ipc.ts": ["exports", "types"],
"**/warm-verification/manifest-loader.ts": ["exports", "types"],
"**/warm-verification/scenario.ts": ["exports", "types"],
"**/warm-verification/source-watcher.ts": ["exports", "types"],
"**/warm-verification/state.ts": ["exports", "types"],
"**/warm-verification/supervision.ts": ["exports", "types"],
"**/warm-verification/visual.ts": ["exports", "types"],
"**/warm-verification/selection.ts": ["exports", "types"],
"**/warm-verification/retention.ts": ["exports", "types"],
"**/scenario-compiler/contracts.ts": ["exports", "types"],
"**/scenario-compiler/candidate.ts": ["exports", "types"],
"**/scenario-compiler/cli.ts": ["exports", "types"],
"**/scenario-compiler/provider.ts": ["exports", "types"]
}
}