forked from sourcegraph/cody
-
Notifications
You must be signed in to change notification settings - Fork 0
/
knip.jsonc
34 lines (34 loc) · 1022 Bytes
/
knip.jsonc
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
{
"$schema": "https://unpkg.com/knip@3/schema-jsonc.json",
"workspaces": {
"vscode": {
"entry": [
"src/extension.*.ts",
"scripts/*.ts",
"test/integration/*.ts",
"webviews/index.tsx",
"webviews/search.tsx"
],
"ignore": ["src/tree-sitter/query-tests/test-data/**", "src/jsonrpc/agent-protocol.ts"],
"ignoreBinaries": ["code", "code-insiders"],
"ignoreDependencies": [
"@vscode/vsce",
"ovsx",
"path-browserify",
"os-browserify",
"@vscode/codicons"
]
},
"agent": {
"vitest": {
"entry": ["**/__tests__/**/*.ts"]
},
"ignore": ["src/vscode-shim.ts"]
},
"lib/ui": {
"ignore": ["src/utils/icons.tsx"]
}
},
"ignore": ["**/__mocks__/**", "**/mocks.*"],
"exclude": []
}