-
Notifications
You must be signed in to change notification settings - Fork 895
Expand file tree
/
Copy pathknip.jsonc
More file actions
29 lines (28 loc) · 791 Bytes
/
knip.jsonc
File metadata and controls
29 lines (28 loc) · 791 Bytes
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
{
"$schema": "https://unpkg.com/knip@5/schema-jsonc.json",
"rules": {
// Disabled due to too many false positives: Knip doesn't consider catalog
// usages in ignored workspaces.
"catalog": "off",
},
"ignoreWorkspaces": [".", "apps/desktop", "apps/web", "e2e", "packages/*"],
"workspaces": {
"apps/lite": {
"entry": [
"electron/src/ipc.ts!",
"electron/src/main.ts!",
"electron/src/preload.cts!",
"ui/src/close-watcher.d.ts!",
"ui/src/css-modules.d.ts!",
"ui/src/electron.d.ts!",
"ui/src/react-css-properties.d.ts!",
],
"project": ["electron/src/**!", "ui/src/**!"],
"tanstack-router": {
"entry": ["ui/src/routeTree.gen.ts"],
},
"includeEntryExports": true,
"ignoreDependencies": ["@tanstack/eslint-plugin-query"],
},
},
}