-
Notifications
You must be signed in to change notification settings - Fork 5
/
knip.json
54 lines (54 loc) · 1.25 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"next": {
"entry": ["next.config.{js,ts,cjs,mjs}", "src/pages/**/*.{js,jsx,ts,tsx}"]
},
"husky": {
"config": [
".husky/commit-msg",
".husky/pre-{applypatch,commit,merge-commit,push,rebase,receive}",
".husky/post-{checkout,commit,merge,rewrite}"
]
},
"prettier": {
"config": [
".prettierrc",
".prettierrc.{json,js,cjs,yml,yaml}",
"prettier.config.{js,cjs}",
"package.json"
]
},
"commitlint": {
"config": [
".commitlintrc",
".commitlintrc.{json,yaml,yml,js,cjs,ts,cts}",
"commitlint.config.{js,cjs,ts,cts}",
"package.json"
]
},
"commitizen": {
"config": [".czrc", "package.json"]
},
"eslint": {
"config": [
".eslintrc",
".eslintrc.{js,json,cjs}",
".eslintrc.{yml,yaml}",
"package.json"
],
"entry": ["eslint.config.js"]
},
"postcss": {
"config": ["postcss.config.js", "postcss.config.json", "package.json"]
},
"storybook": {
"config": [".storybook/{main,manager}.{js,ts}"],
"entry": [
".storybook/preview.{js,jsx,ts,tsx}",
"**/*.stories.{js,jsx,ts,tsx}"
],
"project": [".storybook/**/*.{js,jsx,ts,tsx}"]
},
"tailwind": {
"config": ["tailwind.config.{js,cjs,mjs,ts}"]
}
}