-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathknip.json
More file actions
80 lines (80 loc) · 2.06 KB
/
Copy pathknip.json
File metadata and controls
80 lines (80 loc) · 2.06 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
{
"$schema": "https://unpkg.com/knip@6/schema.json",
"ignoreWorkspaces": ["apps/ingest", "apps/ios", "examples/*", "lib/llm", "lib/thinking-orbs"],
"ignore": [".context/**", ".deepsec/**", "**/*.type-test.ts"],
"ignoreExportsUsedInFile": true,
"workspaces": {
".": {
"entry": ["alchemy.run.ts", "scripts/**/*.ts", "scripts/oxlint-plugins/*.mjs"],
"ignoreBinaries": ["wrangler", "tb", "pscale"]
},
"apps/web": {
"entry": [
"src/routes/**/*.tsx",
"src/worker.ts",
"alchemy.run.ts",
"src/components/ai-elements/**",
"src/components/icons/**",
"src/lib/effect-atom.ts"
]
},
"apps/landing": {
"entry": ["src/worker.ts", "alchemy.run.ts", "tools/**/*.ts", "tools/**/*.js"],
"ignoreDependencies": ["@paper-design/shaders"]
},
"apps/api": {
"entry": ["alchemy.run.ts", "autumn.config.ts", "scripts/cold-path/*.mjs"],
"ignoreDependencies": ["cloudflare"]
},
"apps/alerting": {
"entry": ["alchemy.run.ts"]
},
"apps/local-ui": {
"entry": ["src/worker.ts", "alchemy.run.ts"]
},
"apps/cli": {
"entry": [
"test/probes/*.ts",
"test/archive-probe-helpers.ts",
"test/merge-injection-probe.ts",
"test/native-local-store-migration-fixture.ts",
"test/native-service-map-ingest-bridge-probe.ts"
],
"ignoreBinaries": ["duckdb"]
},
"packages/db": {
"entry": ["scripts/**/*.ts"],
"ignoreBinaries": ["pscale"]
},
"packages/email": {
"entry": ["scripts/**/*.ts"],
"ignore": ["src/generated/**"],
"ignoreDependencies": ["tailwindcss"]
},
"lib/effect-cloudflare": {
"ignoreDependencies": ["cloudflare"]
},
"packages/query-engine": {
"entry": ["src/drain/index.ts"]
},
"packages/browser": {
"ignoreDependencies": ["rrweb"]
}
},
"rules": {
"files": "error",
"dependencies": "error",
"devDependencies": "error",
"unlisted": "error",
"binaries": "error",
"unresolved": "error",
"exports": "warn",
"types": "warn",
"nsExports": "warn",
"nsTypes": "warn",
"enumMembers": "warn",
"namespaceMembers": "warn",
"duplicates": "warn",
"cycles": "error"
}
}