Skip to content

Commit

Permalink
fix(apps/web/lint): fix knip lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
GervinFung committed Apr 9, 2024
1 parent 392f071 commit cb2b18e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions apps/web/knip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,18 @@ const config: KnipConfig = {
'src/**/*.ts',
'script/**/*.ts',
],
ignore: ['next-sitemap.config.js'],
ignoreDependencies: ['vite-node', 'next-sitemap', 'prettier', 'eslint'],
ignore: ['next-sitemap.config.js', 'next/**.mjs', 'test/**/**.ts'],
ignoreBinaries: ['make'],
ignoreDependencies: [
'vite-node',
'next-sitemap',
'eslint',
'@periotable/data',
'@ducanh2912/next-pwa',
'@types/jest-image-snapshot',
'jest-image-snapshot',
'puppeteer',
],
};

export default config;

0 comments on commit cb2b18e

Please sign in to comment.