-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathknip.json
More file actions
127 lines (127 loc) · 4.02 KB
/
Copy pathknip.json
File metadata and controls
127 lines (127 loc) · 4.02 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"$schema": "https://unpkg.com/knip@6/schema.json",
"entry": [
"package.json",
"pm2.config.cjs",
"scripts/**/*.{js,cjs,mjs,ts}",
"e2e-tests/**/*.test.ts",
"e2e-tests/**/*.spec.ts",
"e2e-tests/scripts/**/*.ts",
"backend/src/**/*.test.ts",
"backend/src/**/*.spec.ts",
"backend/src/main.ts",
"backend/src/**/*.module.ts",
"backend/scripts/**/*.ts",
"frontend/src/**/*.test.ts",
"frontend/src/**/*.test.tsx",
"frontend/src/**/*.spec.ts",
"frontend/src/**/*.spec.tsx",
"frontend/src/main.tsx",
"frontend/src/App.tsx",
"frontend/vite.config.ts",
"worker/src/**/*.test.ts",
"worker/src/**/*.spec.ts",
"worker/src/temporal/workers/**/*.ts",
"worker/src/health/health-server.ts",
"worker/scripts/**/*.ts",
"packages/*/src/**/*.test.ts",
"packages/*/src/**/*.spec.ts",
"packages/*/src/index.ts"
],
"project": [
"*.config.{js,cjs,mjs,ts}",
"pm2.config.cjs",
"scripts/**/*.{js,cjs,mjs,ts}",
"e2e-tests/**/*.ts",
"backend/src/**/*.ts",
"backend/scripts/**/*.ts",
"frontend/src/**/*.{ts,tsx}",
"frontend/vite.config.ts",
"worker/src/**/*.ts",
"worker/scripts/**/*.ts",
"packages/*/src/**/*.ts"
],
"workspaces": {
"frontend": {
"entry": [
"src/main.tsx",
"src/App.tsx",
"vite.config.ts",
"src/test/run-tests-serial.ts",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"src/**/*.spec.ts",
"src/**/*.spec.tsx"
],
"project": ["src/**/*.{ts,tsx}", "vite.config.ts"]
}
},
"ignore": [".tasks/**", ".instances/**", "docs/**", "docker/**", "**/dist/**"],
"ignoreFiles": [
"backend/scripts/**/*.ts",
"backend/src/mcp-servers/index.ts",
"backend/src/mcp/index.ts",
"backend/src/node-io/index.ts",
"e2e-tests/cleanup.ts",
"frontend/src/components/auth/AuthDemo.tsx",
"frontend/src/components/auth/OrganizationSwitcher.tsx",
"frontend/src/components/auth/withAuth.tsx",
"frontend/src/components/timeline/ReviewInspector.tsx",
"frontend/src/components/timeline/event-inspector/index.ts",
"frontend/src/components/timeline/execution-timeline/index.ts",
"frontend/src/components/workflow/AnalyticsInputsEditor.tsx",
"frontend/src/components/workflow/ComponentBadge.tsx",
"frontend/src/components/workflow/FileUpload.tsx",
"frontend/src/components/workflow/McpLibraryToolSelector.tsx",
"frontend/src/components/workflow/builder-shell/index.ts",
"frontend/src/components/workflow/component-badge-utils.ts",
"frontend/src/components/workflow/node/hooks/index.ts",
"frontend/src/components/workflow/nodes/types.ts",
"frontend/src/components/workflow/parameter-field/index.ts",
"frontend/src/features/command-palette/index.ts",
"frontend/src/features/findings/FindingStatusFilter.tsx",
"frontend/src/features/findings/index.ts",
"frontend/src/pages/api-keys-manager/index.ts",
"frontend/src/pages/secrets-manager/index.ts",
"frontend/src/pages/webhooks/index.ts",
"frontend/src/schemas/index.ts",
"frontend/src/test/mocks/execution-store.ts",
"frontend/src/test/mocks/index.ts",
"packages/backend-client/test-client.ts",
"worker/scripts/**/*.ts",
"worker/src/components/test/docker-echo.ts",
"worker/src/utils/index.ts"
],
"ignoreDependencies": [
"@googleapis/admin",
"@grpc/grpc-js",
"@sentris/backend-client",
"@tailwindcss/forms",
"@temporalio/worker",
"@types/bcryptjs",
"@types/dompurify",
"@types/multer",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"@uiw/react-markdown-preview",
"bun-types",
"chalk",
"chalk-animation",
"date-fns",
"google-auth-library",
"html-to-image",
"lint-staged",
"long",
"multer",
"node-pty",
"openapi-typescript",
"swagger-ui-express",
"tsx",
"undici"
],
"ignoreBinaries": ["mint"],
"ignoreIssues": {
"packages/*/eslint.config.mjs": ["unlisted"]
},
"exclude": ["exports", "types", "duplicates"]
}