Roo-Code/knip.json
hannesrudolph 41d2b0f7ce fix: add orchestrator and search-service to knip ignore list
These files are now only used within the worker thread and should not be
flagged as unused by knip
2025-07-03 16:50:13 -06:00

28 lines
639 B
JSON

{
"$schema": "https://unpkg.com/knip@latest/schema.json",
"ignore": [
"**/__tests__/**",
"apps/vscode-e2e/**",
"src/extension/api.ts",
"src/activate/**",
"src/workers/countTokens.ts",
"src/workers/indexing-worker.ts",
"src/services/code-index/orchestrator.ts",
"src/services/code-index/search-service.ts",
"src/extension.ts",
"scripts/**"
],
"workspaces": {
"src": {
"entry": ["extension.ts"],
"project": ["**/*.ts"]
},
"webview-ui": {
"entry": ["src/index.tsx"],
"project": ["src/**/*.{ts,tsx}"]
},
"packages/{build,cloud,evals,ipc,telemetry,types}": {
"project": ["src/**/*.ts"]
}
}
}