-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependency-cruiser.json
76 lines (76 loc) · 2.42 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
{
"forbidden": [
{
"name": "components-not-to-containers",
"severity": "error",
"from": {"path": "Resources/js/components"},
"to": {"path": "containers"}
},
{
"name": "components-not-to-services",
"severity": "error",
"from": {"path": "Resources/js/components"},
"to": {"path": "services"}
},
{
"name": "components-not-to-stores",
"severity": "error",
"from": {"path": "Resources/js/components"},
"to": {"path": "stores"}
},
{
"name": "components-not-to-views",
"severity": "error",
"from": {"path": "Resources/js/components"},
"to": {"path": "views"}
},
{
"name": "containers-not-to-views",
"severity": "error",
"from": {"path": "Resources/js/containers"},
"to": {"path": "views"}
},
{
"name": "services-not-to-components",
"severity": "error",
"from": {"path": "Resources/js/services"},
"to": {"path": "components"}
},
{
"name": "services-not-to-containers",
"severity": "error",
"from": {"path": "Resources/js/services"},
"to": {"path": "containers"}
},
{
"name": "services-not-to-views",
"severity": "error",
"from": {"path": "Resources/js/services"},
"to": {"path": "views"}
},
{
"name": "stores-not-to-components",
"severity": "error",
"from": {"path": "Resources/js/stores"},
"to": {"path": "components"}
},
{
"name": "stores-not-to-containers",
"severity": "error",
"from": {"path": "Resources/js/stores"},
"to": {"path": "containers"}
},
{
"name": "stores-not-to-views",
"severity": "error",
"from": {"path": "Resources/js/stores"},
"to": {"path": "views"}
},
{
"name": "sulu-admin-bundle-not-to-other-sulu-bundles",
"severity": "error",
"from": {"path": "src/Sulu/Bundle/AdminBundle/Resources/js"},
"to": {"path": "src\\/Sulu\\/Bundle\\/(?!AdminBundle)(.*)Bundle\\/Resources\\/js"}
}
]
}