forked from element-hq/element-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.ts
More file actions
102 lines (99 loc) · 3.5 KB
/
knip.ts
File metadata and controls
102 lines (99 loc) · 3.5 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
import { KnipConfig } from "knip";
export default {
workspaces: {
"packages/shared-components": {
entry: ["src/index.ts"],
ignoreBinaries: [
// False positives
"vite",
"typedoc",
],
ignoreDependencies: [
// We import this in some tests, transitive dep of @playwright/test
"playwright-core",
// False positives
"@testing-library/jest-dom",
"@vitejs/plugin-react",
"expect",
"vitest-browser-react",
"vitest-sonar-reporter",
],
},
"packages/playwright-common": {
entry: ["playwright-screenshots.sh"],
ignoreDependencies: ["@playwright/test", "wait-on"],
},
"apps/web": {
entry: [
"src/serviceworker/index.ts",
"src/workers/*.worker.ts",
"src/utils/exportUtils/exportJS.js",
"src/vector/localstorage-fix.ts",
"scripts/**",
"playwright/**",
"test/**",
"res/decoder-ring/**",
"res/jitsi_external_api.min.js",
],
ignore: [
// Keep for now
"src/hooks/useLocalStorageState.ts",
"src/hooks/useTimeout.ts",
"src/components/views/elements/InfoTooltip.tsx",
"src/components/views/elements/StyledCheckbox.tsx",
],
ignoreBinaries: [
// False positive
"webpack-dev-server",
],
ignoreDependencies: [
// Used by jest
"babel-jest",
// Used by babel
"@babel/runtime",
"@babel/plugin-transform-class-properties",
// Referenced in PCSS
"github-markdown-css",
// False positive
"sw.js",
// Used by webpack
"process",
"util",
// Embedded into webapp
"@element-hq/element-call-embedded",
// False-positive jest dep
"vitest-environment-jest-fixed-jsdom",
// We import this in some tests, transitive dep of @playwright/test
"playwright-core",
// Used by matrix-js-sdk, which means we have to include them as a
// dependency so that // we can run `tsc` (since we import the typescript
// source of js-sdk, rather than the transpiled and annotated JS like you
// would with a normal library).
"@types/content-type",
"@types/sdp-transform",
],
},
".": {
entry: ["scripts/**", "docs/**"],
ignoreBinaries: ["lint:types", "lint:js", "lint:style"],
ignoreDependencies: [
// Required for `action-validator`
"@action-validator/*",
// Used for git pre-commit hooks
"husky",
],
},
},
ignoreBinaries: [
// False positives
"playwright",
"build:storybook",
"test:storybook",
"test:unit",
"vendor:jitsi",
],
ignoreExportsUsedInFile: true,
nx: {
config: ["nx.json", "project.json", "{apps,packages,modules}/**/project.json", "package.json"],
},
} satisfies KnipConfig;