-
Notifications
You must be signed in to change notification settings - Fork 4
/
knip.json
27 lines (27 loc) · 877 Bytes
/
knip.json
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
{
"workspaces": {
"server": {
"entry": ["src/main.ts!", "src/dev.ts", "src/db/migrations/*.ts!", "scripts/**/*.ts"],
"project": ["src/**/*.ts!", "tests/**/*.ts", "scripts/**/*.ts", "!src/**/*.test.ts!"],
"ignoreDependencies": ["@sentry/cli", "tsx"]
},
"shared": {
"entry": ["./**/*.ts!", "!./dist/**/*", "!./**/*.test.ts"],
"project": ["./**/*.ts", "!./dist", "!./**/*.test.ts!"],
"includeEntryExports": true
},
".": {
"husky": true,
"commitlint": true,
"ignoreDependencies": [
"@commitlint/config-conventional",
"@semantic-release/changelog",
"@semantic-release/commit-analyzer",
"@semantic-release/github",
"@semantic-release/release-notes-generator"
],
"ignoreBinaries": ["mna-tdb"],
"project": ["!.husky/commitlint.config.js"]
}
}
}