-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
92 lines (92 loc) · 2.58 KB
/
knip.json
File metadata and controls
92 lines (92 loc) · 2.58 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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"workspaces": {
"apps/api": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"]
},
"apps/ui-community": {
"entry": ["src/main.tsx"],
"project": ["src/**/*.{ts,tsx}"],
"ignore": ["**/apollo-client-links.tsx"]
},
"apps/docs": {
"entry": ["src/**/*.{ts,tsx,js,jsx}"],
"project": ["src/**/*.{ts,tsx,js,jsx}"]
},
"packages/cellix/*": {
"project": ["src/**/*.ts"],
"ignore": ["**/graphql-tools-scalars.ts"]
},
"packages/cellix/mongoose-seedwork": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"],
"ignore": ["**/mongo-connection.ts"]
},
"packages/cellix/ui-core/*": {
"entry": ["src/index.ts"],
"project": ["src/**/*.{ts,tsx}"]
},
"packages/ocom/data-sources-mongoose-models": {
"entry": ["src/index.ts", "src/models/**/*.model.ts"],
"project": ["src/**/*.ts"]
},
"packages/ocom/persistence": {
"entry": ["src/index.ts", "src/datasources/**/index.ts"],
"project": ["src/**/*.ts"]
},
"packages/ocom/archunit-tests": {
"project": ["src/**/*.ts"]
},
"packages/ocom/graphql": {
"entry": ["src/index.ts", "src/schema/types/*.resolvers.ts"],
"project": ["src/**/*.ts"]
},
"packages/ocom/ui-community-route-shared": {
"entry": ["src/index.ts"],
"project": ["src/**/*.{ts,tsx}"]
},
"packages/ocom/ui-community-route-admin": {
"entry": ["src/index.ts", "src/index.tsx"],
"project": ["src/**/*.{ts,tsx}"]
},
"packages/ocom/ui-community-route-*": {
"entry": ["src/index.ts"],
"project": ["src/**/*.{ts,tsx}"]
},
"packages/ocom/*": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"]
},
"packages/ocom/ui-components": {
"entry": ["src/index.ts"],
"project": ["src/**/*.{ts,tsx}"]
},
"apps/server-oauth2-mock": {
"entry": ["src/index.ts"],
"project": ["src/**/*.ts"],
"ignoreDependencies": ["tsx"]
}
},
"ignoreWorkspaces": ["packages/cellix/config-typescript"],
"ignore": ["build-pipeline/scripts/**", "**/*.test.ts", "**/*.spec.ts", "**/*.stories.tsx", "**/dist/**", "**/coverage/**", "**/__tests__/**", "**/tests/**", ".agents/**", ".github/**"],
"ignoreIssues": {
"codegen.yml": ["unlisted"]
},
"ignoreDependencies": [
"@types/*",
"@cucumber/node",
"@cucumber/pretty-formatter",
"@serenity-js/assertions",
"@serenity-js/console-reporter",
"@serenity-js/core",
"@serenity-js/cucumber",
"@serenity-js/serenity-bdd",
"@cellix/graphql-codegen",
"@graphql-typed-document-node/core",
"@vitest/coverage-v8",
"ts-scope-trimmer-plugin",
"chrome-devtools-mcp"
],
"ignoreBinaries": ["func"]
}