-
Notifications
You must be signed in to change notification settings - Fork 25
/
.dependency-cruiser.json
65 lines (65 loc) · 1.56 KB
/
.dependency-cruiser.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
57
58
59
60
61
62
63
64
65
{
"extends": "dependency-cruiser/configs/recommended-strict",
"forbidden": [
{
"name": "not-to-test",
"comment": "Don't allow dependencies from outside the test folder to test",
"severity": "error",
"from": {
"pathNot": "^src/script/test"
},
"to": {
"path": "^src/script/test"
}
},
{
"name": "not-to-spec",
"comment": "Don't allow dependencies to spec files",
"severity": "error",
"from": {},
"to": {
"path": "\\.spec\\.js$"
}
},
{
"name": "not-to-dev-dep",
"severity": "error",
"comment": "Don't allow dependencies from src/app/lib to a development only package",
"from": {
"path": "^(src)",
"pathNot": "test"
},
"to": {
"dependencyTypes": ["npm-dev"]
}
},
{
"name": "optional-deps-used",
"severity": "error",
"comment": "we're not using optional dependencies in the mscgenjs site",
"from": {},
"to": {
"dependencyTypes": ["npm-optional"]
}
},
{
"name": "peer-deps-used",
"comment": "we're not using peer dependencies in the mscgenjs site",
"severity": "error",
"from": {},
"to": {
"dependencyTypes": ["npm-peer"]
}
}
],
"options": {
"doNotFollow": "node_modules",
"progress": {"type": "performance-log"},
"prefix": "https://github.com/sverweij/mscgen_js/tree/master/",
"reporterOptions": {
"dot": {
"collapsePattern": "node_modules/[^/]+"
}
}
}
}