Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,3 +191,6 @@ jobs:

- name: 🧹 Check for unused code
run: pnpm knip

- name: 🧹 Check for unused production code
run: pnpm knip --production
3 changes: 1 addition & 2 deletions knip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ const config: KnipConfig = {
'uno-preset-rtl.ts!',
'scripts/**/*.ts',
],
project: ['**/*.{ts,vue,cjs,mjs}'],
ignore: ['test/fixtures/**'],
project: ['**/*.{ts,vue,cjs,mjs}', '!test/fixtures/**'],
ignoreDependencies: [
'@iconify-json/*',
'@vercel/kv',
Expand Down
Loading