-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.dependency-cruiser.json
90 lines (90 loc) · 2.03 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
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
{
"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": "^test"
},
"to": {
"path": "^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": "info",
"comment": "Don't allow dependencies from src/app/lib to a development only package (as we're making a bundle that includes the devDepencencies we import - info only",
"from": {
"path": "^src",
"pathNot": "\\.spec\\.js$"
},
"to": {
"dependencyTypes": ["npm-dev"],
"pathNot": ""
}
},
{
"name": "optional-deps-used",
"severity": "error",
"comment": "optional dependencies don't make sense for this package",
"from": {},
"to": {
"dependencyTypes": ["npm-optional"]
}
},
{
"name": "peer-deps-used",
"comment": "peer dependencies don't make sense for this package",
"severity": "error",
"from": {},
"to": {
"dependencyTypes": ["npm-peer"]
}
},
{
"name": "no-unreachable",
"severity": "error",
"from": {
"path": "^src/mscgen-inpage\\.js$"
},
"to": {
"path": "^src/",
"reachable": false
}
},
{
"name": "no-uncovered",
"severity": "error",
"from": {
"path": "^src/[^\\.]+\\.spec\\.js$"
},
"to": {
"path": "^src/",
"reachable": false
}
}
],
"options": {
"prefix": "https://github.com/mscgenjs/mscgenjs-inpage/blob/master/",
"reporterOptions": {
"dot": {
"theme": {
"graph": {
"splines": "ortho"
}
}
}
}
}
}