-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknip.config.ts
89 lines (88 loc) · 2.89 KB
/
knip.config.ts
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
const ignoreFilePattern = '**/*.?(bench|config|load|story).?(c|m)[jt]s'
const entryPattern = '**/{src,modules}/**/*.?(c|m)[jt]s?(x)'
const testPattern = '**/test/**/*.test.?(c|m)[jt]s?(x)'
export default {
'ignoreBinaries': ['test:e2e', 'templ-cli', 'test:storybook:ci'],
'ignoreDependencies': ['@templ/config', '@vitest/coverage-v8', '@types/autocannon', 'autocannon', 'serve', 'typecheck', 'wait-on'],
'workspaces': {
'.': {
ignore: ['**/{.config,coverage,dist,e2e-report,fixtures,templates}/**', ignoreFilePattern],
},
'packages/*': {
entry: [entryPattern, testPattern, '**/.storybook/*.?(c|m)[jt]s?(x)'],
ignore: [ignoreFilePattern],
},
'apps/*': {
entry: [entryPattern, testPattern],
ignore: [ignoreFilePattern],
},
},
'eslint': {
config: [
'eslint.config.js',
'.eslintrc',
'.eslintrc.{js,json,cjs}',
'.eslintrc.{yml,yaml}',
'package.json',
],
},
'github-actions': {
config: ['.github/workflows/*.{yml,yaml}', '.github/**/action.{yml,yaml}'],
},
'lefthook': {
config: [
'lefthook.yml',
'.git/hooks/prepare-commit-msg',
'.git/hooks/commit-msg',
'.git/hooks/pre-{applypatch,commit,merge-commit,push,rebase,receive}',
'.git/hooks/post-{checkout,commit,merge,rewrite}',
],
},
'next': {
entry: [
'next.config.{js,ts,cjs,mjs}',
'{instrumentation,middleware}.{js,ts}',
'app/global-error.{js,jsx,ts,tsx}',
'app/**/{error,layout,loading,not-found,page,template}.{js,jsx,ts,tsx}',
'app/**/{route,default}.{js,ts}',
'app/{manifest,sitemap,robots}.{js,ts}',
'app/**/{icon,apple-icon}.{js,jsx,ts,tsx}',
'app/**/{opengraph,twitter}-image.{js,jsx,ts,tsx}',
'pages/**/*.{js,jsx,ts,tsx}',
'src/{instrumentation,middleware}.{js,ts}',
'src/app/global-error.{js,jsx,ts,tsx}',
'src/app/**/{error,layout,loading,not-found,page,template}.{js,jsx,ts,tsx}',
'src/app/**/{route,default}.{js,ts}',
'src/app/{manifest,sitemap,robots}.{js,ts}',
'src/app/**/{icon,apple-icon}.{js,jsx,ts,tsx}',
'src/app/**/{opengraph,twitter}-image.{js,jsx,ts,tsx}',
'src/pages/**/*.{js,jsx,ts,tsx}',
],
},
'npm-package-json-lint': {
config: [
'package.json',
],
project: ['app/**', 'packages/**', 'generator', 'scripts'],
},
'postcss': {
config: ['postcss.config.{cjs,js}', 'postcss.config.json', 'package.json'],
},
'storybook': {
config: ['.storybook/{main,test-runner}.{js,ts}'],
entry: [
'.storybook/{manager,preview}.{js,jsx,ts,tsx}',
'**/*.@(mdx|stories.@(mdx|js|jsx|mjs|ts|tsx))',
],
project: ['.storybook/**/*.{js,jsx,ts,tsx}'],
},
'tailwind': {
config: ['tailwind.config.{js,cjs,mjs,ts}'],
},
'typescript': {
config: ['tsconfig.json', 'tsconfig.*.json'],
},
// https://github.com/unjs/jiti/issues/194
'vite': false,
'vitest': false,
}