-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.knip.json
38 lines (38 loc) · 1.05 KB
/
.knip.json
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
{
"$schema": "https://unpkg.com/knip@2/schema.json",
"entry": [],
"project": [],
"ignore": ["**/*.{native,test}.{ts,tsx}"],
"ignoreDependencies": [
"@md3-ui/core",
"@md3-ui/test-utils",
"@svgr/plugin-jsx",
"prettier-plugin-organize-imports"
],
"rules": {
"unresolved": "off"
},
"workspaces": {
".": {
"entry": [".storybook/main.ts", ".storybook/preview.tsx", "scripts/*.ts"],
"project": [".storybook/**/*.{ts,tsx}", "scripts/**/.ts"]
},
"app": {
"entry": ["app.config.js", "metro.config.js", "src/index.ts"],
"project": ["src/**/*.{ts,tsx}"],
"ignoreDependencies": ["expo-modules-autolinking", "uuid"]
},
"docs": {
"project": ["src/**/*.{ts,tsx}"],
"next": {
"entry": ["next.config.mjs", "pages/**/*.{ts,tsx}", "src/layouts/*.tsx"]
}
},
"packages/*": {
"entry": ["src/index.ts", "scripts/*.ts"],
"project": ["src/**/*.{ts,tsx}", "scripts/**/.ts"],
"ignore": ["src/**/*.test.{ts,tsx}"],
"ignoreDependencies": ["prettier"]
}
}
}