-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.dependency-cruiser.js
More file actions
324 lines (323 loc) · 10.6 KB
/
Copy path.dependency-cruiser.js
File metadata and controls
324 lines (323 loc) · 10.6 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
/** @type {import('dependency-cruiser').IConfiguration} */
export default {
forbidden: [
{
name: "no-deep-deps-from-cli",
severity: "error",
from: {
path: "^src/run-cli[.]ts$",
},
to: {
pathNot: ["^src/cli[.]ts$", "$1"],
},
},
{
name: "no-unreachable-from-main",
from: {
path: "src/main.ts",
},
to: {
path: "^src/",
pathNot: ["[.]spec[.]ts$", "^src/(run-cli|cli|version)[.]ts$"],
reachable: false,
},
},
{
name: "use-assert-strict",
comment:
"This module uses 'node:assert'. It's better to use 'node:assert/strict' instead.",
severity: "error",
from: {},
to: {
path: "^assert$",
dependencyTypes: ["core"],
},
},
/* rules from the 'recommended' preset: */
{
name: "no-circular",
severity: "warn",
comment:
"This dependency is part of a circular relationship. You might want to revise " +
"your solution (i.e. use dependency inversion, make sure the modules have a single responsibility) ",
from: {},
to: {
circular: true,
},
},
{
name: "no-orphans",
comment:
"This is an orphan module - it's likely not used (anymore?). Either use it or " +
"remove it. If it's logical this module is an orphan (i.e. it's a config file), " +
"add an exception for it in your dependency-cruiser configuration. By default " +
"this rule does not scrutinize dotfiles (e.g. .eslintrc.js), TypeScript declaration " +
"files (.d.ts), tsconfig.json and some of the babel and webpack configs.",
severity: "warn",
from: {
orphan: true,
pathNot: [
"(^|/)[.][^/]+[.](js|cjs|ts|json)$", // dot files
"[.]d[.]ts$", // TypeScript declaration files
"(^|/)tsconfig[.]json$", // TypeScript config
"[.]oxlintrc[.]json$", // oxlint config
"^dist/",
],
},
to: {},
},
{
name: "no-deprecated-core",
comment:
"A module depends on a node core module that has been deprecated. Find an alternative - these are " +
"bound to exist - node doesn't deprecate lightly.",
severity: "warn",
from: {},
to: {
dependencyTypes: ["core"],
path: [
"^(v8/tools/codemap)$",
"^(v8/tools/consarray)$",
"^(v8/tools/csvparser)$",
"^(v8/tools/logreader)$",
"^(v8/tools/profile_view)$",
"^(v8/tools/profile)$",
"^(v8/tools/SourceMap)$",
"^(v8/tools/splaytree)$",
"^(v8/tools/tickprocessor-driver)$",
"^(v8/tools/tickprocessor)$",
"^(node-inspect/lib/_inspect)$",
"^(node-inspect/lib/internal/inspect_client)$",
"^(node-inspect/lib/internal/inspect_repl)$",
"^(async_hooks)$",
"^(punycode)$",
"^(domain)$",
"^(constants)$",
"^(sys)$",
"^(_linklist)$",
"^(_stream_wrap)$",
],
},
},
{
name: "not-to-deprecated",
comment:
"This module uses a (version of an) npm module that has been deprecated. Either upgrade to a later " +
"version of that module, or find an alternative. Deprecated modules are a security risk.",
severity: "warn",
from: {},
to: {
dependencyTypes: ["deprecated"],
},
},
{
name: "no-non-package-json",
severity: "error",
comment:
"This module depends on an npm package that isn't in the 'dependencies' section of your package.json. " +
"That's problematic as the package either (1) won't be available on live (2 - worse) will be " +
"available on live with an non-guaranteed version. Fix it by adding the package to the dependencies " +
"in your package.json.",
from: {},
to: {
dependencyTypes: ["npm-no-pkg", "npm-unknown"],
},
},
{
name: "not-to-unresolvable",
comment:
"This module depends on a module that cannot be found ('resolved to disk'). If it's an npm " +
"module: add it to your package.json. In all other cases you likely already know what to do.",
severity: "error",
from: {},
to: {
couldNotResolve: true,
// https://github.com/nodejs/node/issues/42785 - node:test is not enumerated in builtinModules
// and won't ever be. Workaround in dependency-cruiser coming up. For now: ignore node:test
path: "node:test",
},
},
{
name: "no-duplicate-dep-types",
comment:
"Likely this module depends on an external ('npm') package that occurs more than once " +
"in your package.json i.e. bot as a devDependencies and in dependencies. This will cause " +
"maintenance problems later on.",
severity: "warn",
from: {},
to: {
moreThanOneDependencyType: true,
// as it's pretty common to have a type import be a type only import
// _and_ (e.g.) a devDependency - don't consider type-only dependency
// types for this rule
dependencyTypesNot: ["type-only"],
},
},
/* rules you might want to tweak for your specific situation: */
{
name: "not-to-spec",
comment:
"This module depends on a spec (test) file. The sole responsibility of a spec file is to test code. " +
"If there's something in a spec that's of use to other modules, it doesn't have that single " +
"responsibility anymore. Factor it out into (e.g.) a separate utility/ helper or a mock.",
severity: "error",
from: {},
to: {
path: "[.]spec[.]ts$",
},
},
{
name: "not-to-dev-dep",
severity: "error",
comment:
"This module depends on an npm package from the 'devDependencies' section of your " +
"package.json. It looks like something that ships to production, though. To prevent problems " +
"with npm packages that aren't there on production declare it (only!) in the 'dependencies'" +
"section of your package.json. If this module is development only - add it to the " +
"from.pathNot re of the not-to-dev-dep rule in the dependency-cruiser configuration",
from: {
path: "^(dist|src)",
pathNot: "[.]spec[.]ts$",
},
to: {
dependencyTypes: ["npm-dev"],
},
},
{
name: "optional-deps-used",
severity: "info",
comment:
"This module depends on an npm package that is declared as an optional dependency " +
"in your package.json. As this makes sense in limited situations only, it's flagged here. " +
"If you're using an optional dependency here by design - add an exception to your" +
"dependency-cruiser configuration.",
from: {},
to: {
dependencyTypes: ["npm-optional"],
},
},
{
name: "peer-deps-used",
comment:
"This module depends on an npm package that is declared as a peer dependency " +
"in your package.json. This makes sense if your package is e.g. a plugin, but in " +
"other cases - maybe not so much. If the use of a peer dependency is intentional " +
"add an exception to your dependency-cruiser configuration.",
severity: "warn",
from: {},
to: {
dependencyTypes: ["npm-peer"],
},
},
{
name: "only-type-only-in-types",
comment:
"This type only module depends on something that is not type-only. That's not allowed.",
severity: "error",
from: {
path: "[.]d[.]m?ts$",
},
to: {
dependencyTypesNot: [
"type-only",
"type-import",
"triple-slash-type-reference",
],
},
},
{
name: "only-type-only-to-dts",
comment:
"This module depends on a .d.ts file via an import that is not 'type-only'. See https://www.typescriptlang.org/docs/handbook/modules/reference.html#type-only-imports-and-exports",
severity: "error",
from: {},
to: {
path: "[.]d[.][cm]?ts$",
dependencyTypesNot: [
"type-only",
"type-import",
"triple-slash-type-reference",
],
},
},
{
name: "no-tsconfig-basedir-use",
comment:
"This module depends om something directly via a 'tsconfig.json' 'baseUrl' property. This is discouraged, unless you're still doing AMD modules - see https://www.typescriptlang.org/tsconfig#baseUrl",
severity: "error",
from: {},
to: {
dependencyTypes: ["aliased-tsconfig-base-url"],
},
},
],
options: {
doNotFollow: {
path: "node_modules",
},
moduleSystems: ["es6"],
prefix: `vscode://file/${process.cwd()}/`,
tsPreCompilationDeps: true,
tsConfig: {
fileName: "./tsconfig.json",
},
enhancedResolveOptions: {
exportsFields: ["exports"],
conditionNames: ["import", "require", "node", "default"],
extensions: [".ts", ".d.ts", ".js", ".cjs"],
},
cache: true,
skipAnalysisNotInRules: true,
reporterOptions: {
dot: {
collapsePattern: "node_modules/[^/]+",
theme: {
graph: {
splines: "ortho",
},
modules: [
{
criteria: { matchesFocus: true },
attributes: { fillcolor: "lime", penwidth: 2 },
},
{
criteria: { matchesReaches: true },
attributes: { fillcolor: "lime", penwidth: 2 },
},
{
criteria: { matchesHighlight: true },
attributes: { fillcolor: "lime", penwidth: 2 },
},
{
criteria: { source: ".spec.ts" },
attributes: {
fontcolor: "gray",
color: "gray",
fillcolor: "#faffff",
},
},
],
dependencies: [
{
criteria: { "rules[0].severity": "error" },
attributes: { fontcolor: "red", color: "red" },
},
{
criteria: { "rules[0].severity": "warn" },
attributes: { fontcolor: "orange", color: "orange" },
},
{
criteria: { "rules[0].severity": "info" },
attributes: { fontcolor: "blue", color: "blue" },
},
],
},
},
archi: {
collapsePattern:
"^(packages|src|lib|app|test(s?)|spec(s?))/[^/]+|node_modules/[^/]+",
},
},
},
};
// generated: dependency-cruiser@11.9.0 on 2022-06-15T20:07:49.259Z