-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.depcheckrc.json
56 lines (54 loc) · 1.17 KB
/
.depcheckrc.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"ignorePatterns": [],
"ignores": [
"@eslint/js",
"@ianvs/prettier-plugin-sort-imports",
"@next/bundle-analyzer",
"@next/eslint-plugin-next",
"@prettier/plugin-ruby",
"@tailwindcss/forms",
"@tailwindcss/typography",
"@types/eslint",
"@typescript-eslint",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"autoprefixer",
"depcheck",
"eslint-*",
"eslint",
"jiti",
"playwright",
"postcss-import",
"postcss",
"prettier-plugin-tailwindcss",
"prettier",
"react-email",
"sharp",
"tailwindcss",
"typescript-eslint",
"@/config",
"@components/*",
"@data/*",
"@hooks/*",
"@layouts/*",
"@lib/*",
"@server/*",
"@utils/*",
"mdx",
"src"
],
"parsers": {
"**/*.{ts,tsx}": ["typescript"]
},
"aliases": {
"@components": "./src/components",
"@data": "./src/data",
"@hooks": "./src/hooks",
"@layouts": "./src/components/layouts",
"@lib": "./src/lib",
"@utils": "./src/utils",
"@server": "./src/server",
"@/config": "./src/config.ts"
},
"specials": ["depcheck.special.eslint", "depcheck.special.webpack"]
}