-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathknip.json
More file actions
98 lines (98 loc) · 2.66 KB
/
knip.json
File metadata and controls
98 lines (98 loc) · 2.66 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignoreExportsUsedInFile": {
"interface": true,
"type": true
},
"tags": ["-lintignore"],
"ignore": [".agents/**"],
"ignoreDependencies": [
"@r_masseater/doc-engine",
"@feature-sliced/steiger-plugin",
"@r_masseater/ops-harbor",
"tailwindcss"
],
"workspaces": {
".": {
"entry": [".claude/hooks/*.ts"]
},
"packages/vitest-config": {
"entry": ["vitest.config.d.ts"]
},
"packages/cc-plugin-lib": {
"project": ["src/**/*.ts"]
},
"packages/ops-harbor-core": {
"project": ["src/**/*.ts"]
},
"apps/ops-harbor-control-plane": {
"entry": ["src/cli.ts"],
"project": ["src/**/*.ts"],
"ignoreDependencies": ["better-sqlite3", "@types/better-sqlite3"]
},
"apps/ops-harbor": {
"entry": ["src/cli.ts", "src/mcp-server.ts"],
"project": ["src/**/*.{ts,tsx}"],
"ignoreDependencies": [
"better-sqlite3",
"@types/better-sqlite3",
"localtunnel",
"@repo/ops-harbor-control-plane"
]
},
"apps/sdd-webapp": {
"entry": ["src/cli.ts", "src/mcp-server.ts", "src/client/main.tsx"],
"project": ["src/**/*.{ts,tsx}"],
"ignore": ["src/client/components/ui/**"],
"ignoreDependencies": [
"@tailwindcss/typography",
"@tailwindcss/vite",
"@vitejs/plugin-react",
"autoprefixer",
"postcss",
"tailwindcss",
"tw-animate-css"
],
"vite": false
},
"plugins/agnix": {
"entry": ["hooks/entry/*.ts"]
},
"plugins/code-review": {
"entry": ["skills/*/scripts/*.ts", "skills/*/env.ts"]
},
"plugins/context": {
"entry": ["hooks/entry/*.ts"]
},
"plugins/debug": {
"entry": ["hooks/entry/*.ts"]
},
"plugins/devkit": {
"entry": ["hooks/entry/*.ts", "skills/*/scripts/*.ts", "skills/*/scripts/**/*.ts"]
},
"plugins/eslint-lsp": {
"entry": ["hooks/entry/*.ts"]
},
"plugins/github-workflow": {
"entry": ["hooks/entry/*.ts", "hooks/*.test.ts"]
},
"plugins/github-issue-db": {
"entry": ["scripts/*.ts", "lib/*.ts", "lib/*.test.ts", "lib/*.bun.test.ts"]
},
"plugins/mutils": {
"entry": ["hooks/entry/*.ts", "skills/*/scripts/*.ts", "skills/*/*.ts"]
},
"plugins/progress-tracker": {
"entry": ["hooks/entry/*.ts"]
},
"plugins/research": {
"entry": ["skills/*/scripts/*.ts", "env.ts"]
},
"plugins/sdd": {
"entry": ["hooks/entry/*.ts", "skills/*/scripts/*.ts"]
},
"plugins/ui-dev": {
"entry": ["hooks/entry/*.ts", "skills/*/scripts/*.ts", "scripts/*.ts", "env.ts"]
}
}
}