-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.json
More file actions
46 lines (46 loc) · 955 Bytes
/
knip.json
File metadata and controls
46 lines (46 loc) · 955 Bytes
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
{
"$schema": "https://unpkg.com/knip@latest/schema.json",
"entry": [
"src/pages/**/*.{ts,astro}",
"src/layouts/**/*.astro",
"src/components/**/*.astro"
],
"project": [
"src/**/*.{ts,tsx,astro}",
"__tests__/**/*.{ts,tsx}"
],
"ignore": [
"src/components/consts.ts",
"src/components/ui/badge.tsx"
],
"ignoreDependencies": [
"tailwindcss",
"@tailwindcss/typography",
"class-variance-authority",
"@vitest/coverage-v8"
],
"ignoreExportsUsedInFile": {
"interface": true,
"type": true
},
"astro": {
"entry": [
"astro.config.{js,ts,mjs}",
"src/pages/**/*.astro",
"src/layouts/**/*.astro",
"src/content/config.ts"
]
},
"vitest": {
"entry": [
"vitest.config.{js,ts}",
"__tests__/**/*.{test,spec}.{ts,tsx}"
]
},
"eslint": {
"entry": ["eslint.config.{js,mjs}"]
},
"postcss": {
"entry": ["postcss.config.{js,mjs}"]
}
}