-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathknip.json
More file actions
24 lines (24 loc) · 707 Bytes
/
Copy pathknip.json
File metadata and controls
24 lines (24 loc) · 707 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
{
"$schema": "./node_modules/knip/schema.json",
"entry": ["src/main.ts", "src/cli.ts", "src/contracts/errorSchemas.ts"],
"project": ["src/**/*.ts", "tests/**/*.ts", "scripts/**/*.mjs"],
"ignoreDependencies": ["electron"],
"ignoreBinaries": ["ps"],
"ignoreExportsUsedInFile": true,
"ignoreIssues": {
"src/domain/mobileApplicationInvestigation.ts": ["types"],
"src/domain/objcSwiftMetadata.ts": ["types"]
},
"rules": {
"files": "error",
"dependencies": "error",
"devDependencies": "error",
"unlisted": "error",
"exports": "error",
"nsExports": "error",
"types": "error",
"nsTypes": "error",
"enumMembers": "error",
"duplicates": "error"
}
}