We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b469e commit a58b30eCopy full SHA for a58b30e
2 files changed
knip.ts
@@ -29,6 +29,9 @@ const config: KnipConfig = {
29
ignoreDependencies: [
30
'@iconify-json/*',
31
32
+ /** Gives false positive for knip in strict mode, because a type is re-exported. */
33
+ '@npm/types',
34
+
35
/** Strict mode knip complains about this for some reason, even when uno.config.ts is added as an entry */
36
'unocss',
37
'@vercel/kv',
package.json
@@ -17,7 +17,7 @@
17
"dev:docs": "pnpm run --filter npmx-docs dev --port=3001",
18
"i18n:check": "node scripts/compare-translations.ts",
19
"i18n:check:fix": "node scripts/compare-translations.ts --fix",
20
- "knip": "knip",
+ "knip": "knip --strict",
21
"knip:fix": "knip --fix",
22
"lint": "oxlint && oxfmt --check",
23
"lint:fix": "oxlint --fix && oxfmt",
0 commit comments