Make knip happy

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2026-02-24 16:10:34 +00:00
parent ee8094ded6
commit 41d6094cc0
+68 -35
View File
@@ -4,8 +4,27 @@ 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",
@@ -16,7 +35,6 @@ export default {
"test/**",
"res/decoder-ring/**",
"res/jitsi_external_api.min.js",
"docs/**",
],
ignore: [
// Keep for now
@@ -24,43 +42,58 @@ export default {
"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",
"packages/**/*",
// 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: ["test:storybook", "test:unit", "build:storybook"],
ignoreDependencies: [
// Required for `action-validator`
"@action-validator/*",
// Used for git pre-commit hooks
"husky",
// 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",
// Transitive dep of jest
"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",
ignoreBinaries: [
// False positives
"playwright",
"build:storybook",
"test:storybook",
"test:unit",
"vendor:jitsi",
],
ignoreExportsUsedInFile: true,
nx: {