-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathknip.json
More file actions
48 lines (48 loc) · 1.19 KB
/
Copy pathknip.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"entry": [
"src/cli/index.ts",
"src/public/index.ts",
"src/public/engine.ts",
"src/public/canonical.ts",
"src/public/targets.ts",
"src/mcp/server.ts",
"scripts/**/*.ts",
"tests/**/*.test.ts",
"tests/e2e/**/*.ts",
"tests/import-generate-roundtrip.ts",
"tests/agents-folder-structure-research.test.ts",
"tests/harness/**/*.ts",
"tests/fixtures/**/*.ts",
"vitest.config.ts",
"vitest.e2e.config.ts",
"vitest.e2e-skill-fixtures.config.ts",
"tsup.config.ts",
"eslint.config.mjs"
],
"project": ["src/**/*.ts", "tests/**/*.ts", "scripts/**/*.ts"],
"ignore": [
"dist/**",
"coverage/**",
"website/**",
"tests/consumer-smoke/**",
"tests/e2e/fixtures/**"
],
"ignoreDependencies": [],
"ignoreExportsUsedInFile": true,
"rules": {
"files": "error",
"dependencies": "error",
"devDependencies": "error",
"unlisted": "error",
"binaries": "error",
"unresolved": "error",
"exports": "error",
"types": "error",
"nsExports": "error",
"nsTypes": "error",
"duplicates": "error",
"enumMembers": "error",
"classMembers": "off"
}
}