-
Notifications
You must be signed in to change notification settings - Fork 21
/
knip.config.js
74 lines (68 loc) · 1.89 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// This is the configuration file for Knip:
// https://knip.dev/overview/configuration
// @ts-check
/** @type {import("knip").KnipConfig} */
const config = {
// Knip cannot exclude enum members per package:
// https://github.com/webpro-nl/knip/issues/794
exclude: ["enumMembers"],
ignoreBinaries: [
"tsx", // This is provided by "complete-lint".
],
// Ignore all dependencies in the root. (This is checked by the `lintMonorepoPackageJSONs` helper
// function.)
ignoreDependencies: [".+"],
workspaces: {
"packages/*": {},
"packages/docs": {
ignore: [
"babel.config.js",
"docusaurus.config.ts",
"scripts/**",
"sidebars.ts",
"src/**/index.tsx",
"static/js/hotkey.js",
"typedoc.config.base.mjs",
],
},
"packages/eslint-config-isaacscript": {
entry: ["base.js", "mod.js"],
},
"packages/eslint-plugin-isaacscript": {
ignore: [
"src/template.ts",
"tests/fixtures/file.ts",
"tests/template.ts",
],
},
"packages/isaac-lua-polyfill": {},
"packages/isaac-typescript-definitions": {
ignore: ["typedoc.config.mjs"],
},
"packages/isaac-typescript-definitions-repentogon": {
ignore: ["typedoc.config.mjs"],
},
"packages/isaacscript-cli": {
entry: [
"src/main.ts",
"src/commands/monitor/modDirectorySyncer/modDirectorySyncer.ts",
"src/commands/monitor/saveDatWriter/saveDatWriter.ts",
],
ignore: [
"**/copied/**",
"file-templates/**",
"plugins/**",
"src/interfaces/IsaacScriptTSConfig.ts",
],
},
"packages/isaacscript-common": {
ignore: [
"src/classes/features/other/extraConsoleCommands/commands.ts",
"src/lib/jsonLua.js",
"typedoc.config.mjs",
],
},
"packages/isaacscript-spell": {},
},
};
export default config;