-
Notifications
You must be signed in to change notification settings - Fork 0
/
deptrac.yaml
39 lines (37 loc) · 926 Bytes
/
deptrac.yaml
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
deptrac:
paths:
- ./src/
layers:
- name: Controller
collectors:
- type: classLike
value: OxidEsales\\.*GraphQL.*Controller\\.*
- name: Service
collectors:
- type: classLike
value: OxidEsales\\.*GraphQL.*Service\\.*
- name: Infrastructure
collectors:
- type: classLike
value: OxidEsales\\.*GraphQL.*Repository\\.*
- type: classLike
value: OxidEsales\\.*GraphQL.*Infrastructure\\.*
- name: InternalService
collectors:
- type: classLike
regex: OxidEsales\\Eshop.*\\Internal\\.*
- name: Core
collectors:
- type: classLike
regex: OxidEsales\\Eshop(\w+)?\\(?!Internal)
ruleset:
Controller:
- Service
Service:
- InternalService
- Infrastructure
Infrastructure:
- Core
- InternalService
Core: ~
InternalService: ~