forked from prettier/prettier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
knip.config.js
34 lines (34 loc) · 892 Bytes
/
knip.config.js
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
export default {
workspaces: {
".": {
entry: ["src/plugins/*", "scripts/**"],
project: ["src/**", "scripts/**"],
ignore: [
"scripts/build/config.js",
"scripts/build/build-javascript-module.js",
"scripts/tools/**",
],
ignoreDependencies: [
"eslint-formatter-friendly",
"ts-expect",
"renovate",
],
ignoreBinaries: ["test-coverage", "renovate-config-validator"],
},
website: {
entry: [
"siteConfig.js",
"core/Footer.js",
"pages/**/*.js",
"static/**/*.js",
],
ignoreDependencies: ["codemirror", "highlight.js", "@babel/preset-react"],
ignore: ["pages/en/**"],
},
"scripts/tools/bundle-test": {},
"scripts/tools/eslint-plugin-prettier-internal-rules": {},
"scripts/release": {
entry: ["release.js"],
},
},
};