forked from chavacava/dfence
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfence.json
More file actions
32 lines (32 loc) · 798 Bytes
/
dfence.json
File metadata and controls
32 lines (32 loc) · 798 Bytes
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
{
"components":{
"cli":"#dfence/cmd.*",
"main":"#dfence$",
"internal":"dfence/internal",
"vendored":"github.com",
"golang":"golang.org"
},
"constraints":[
{
"name":"internal -x-> cli",
"scope":"internal",
"kind":"forbid",
"deps":"cli",
"onbreak":"error"
},
{
"name":"cli depends only with internal, vendored or golang",
"scope":"cli",
"kind":"allow",
"deps":"internal vendored golang",
"onbreak":"error"
},
{
"name":"main only depends on cli",
"scope":"main",
"kind":"allow",
"deps":"cli",
"onbreak":"error"
}
]
}