-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bca.example.json
More file actions
44 lines (44 loc) · 1.08 KB
/
Copy path.bca.example.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"view": "project",
"projectRoot": ".",
"direction": "right",
"title": "Business Central architecture",
"groupBy": "role",
"roleMappings": {
"Domain": ["Contoso.Sales:table:*", "Contoso.Sales:codeunit:*"]
},
"namespaces": ["Contoso.**"],
"exclude": ["**/test/**"],
"moduleDepth": "auto",
"folderDepth": 1,
"includeUnresolvedCalls": false,
"maxEdges": 500,
"workflow": {
"entries": ["ProcessDocument"],
"depth": 8,
"maxNodes": 100,
"maxEdges": 250,
"edgeTypes": ["calls", "events", "writes"],
"phases": {
"Validation": ["Validate*"],
"Processing": ["Process*", "Post*"]
},
"stop": ["Finalize*"],
"collapse": ["*Telemetry*"]
},
"details": false,
"noExternal": false,
"layout": "elk",
"theme": 0,
"sourceUrl": "https://github.com/example/repo/blob/{ref}/{file}#L{line}",
"sourceRef": "main",
"sourcePathPrefix": "apps/Sales",
"forbiddenDependencies": [
{
"from": "Contoso.Core:**",
"to": "Contoso.UI:**",
"severity": "warning",
"message": "Core must not depend on UI"
}
]
}