-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathknip.jsonc
More file actions
50 lines (50 loc) · 1.72 KB
/
knip.jsonc
File metadata and controls
50 lines (50 loc) · 1.72 KB
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
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"ignoreDependencies": [
// TODO: We should be able to remove these once we
// completely migrate to new configuration
// https://github.com/airbnb/javascript/issues/2961
"eslint-config-airbnb",
"eslint-plugin-import-newlines",
"eslint-plugin-jsx-a11y",
"eslint-plugin-react",
"eslint-plugin-react-hooks",
"eslint-plugin-react-native",
"eslint-plugin-simple-import-sort",
// FIXME: Remove this after type fixes are made
"firebase-admin",
// FIXME: Remove this after type fixes are made
"expo-splash-screen",
"@typescript-eslint/eslint-plugin"
],
"ignoreExportsUsedInFile": true,
"entry": [
"i18n.ts",
"app/**/*.{js,ts,tsx,web.ts,web.tsx,native.ts,native.tsx,ios.ts,ios.tsx,android.ts,android.tsx}!",
"components/**/*.{js,ts,tsx,web.ts,web.tsx,native.ts,native.tsx,ios.ts,ios.tsx,android.ts,android.tsx}!",
"contexts/**/*.{ts,tsx}!",
"hooks/**/*.{ts,tsx}!",
"utils/**/*.{ts,tsx}!",
"constants/**/*.{ts,tsx}!"
],
"project": [
"app/**/*.{ts,tsx,web.ts,web.tsx,native.ts,native.tsx,ios.ts,ios.tsx,android.ts,android.tsx}",
"components/**/*.{ts,tsx,web.ts,web.tsx,native.ts,native.tsx,ios.ts,ios.tsx,android.ts,android.tsx}",
"contexts/**/*.{ts,tsx}",
"hooks/**/*.{ts,tsx}",
"utils/**/*.{ts,tsx}",
"constants/**/*.{ts,tsx}"
],
"ignore": [
".expo/**",
"android/**",
"ios/**",
"node_modules/**",
"patches/**",
"app.json",
"expo-router/**"
],
"expo": {
"entry": ["app/_layout.tsx"]
}
}