-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathdeptrac.yaml
More file actions
54 lines (53 loc) · 1.57 KB
/
deptrac.yaml
File metadata and controls
54 lines (53 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
imports:
- deptrac.baseline.yaml
deptrac:
paths:
- ./code_samples
layers:
- name: CodeSamples
collectors:
- type: directory
value: code_samples
- name: IbexaContracts
collectors:
- type: classLike
value: .*Ibexa\\Contracts\\.*
- name: IbexaSiteAccessConfiguration
collectors:
- type: classLike
value: .*Ibexa\\Bundle\\Core\\DependencyInjection\\Configuration\\SiteAccessAware\\.*
- name: IbexaInternal
collectors:
- type: tagValueRegex
tag: '@internal'
- name: IbexaRest
collectors:
- type: classLike
value: .*Ibexa\\.*\\Rest\\.*
- type: classLike
value: .*Ibexa\\Rest\\.*
- name: IbexaConstraints
collectors:
- type: classLike
value: .*Ibexa\\.*\\Constraints\\.*
- name: IbexaNotAllowed
collectors:
- type: bool
must:
- type: classLike
value: .*Ibexa\\.*
must_not:
- type: layer
value: IbexaContracts
- type: layer
value: IbexaSiteAccessConfiguration
- type: layer
value: IbexaRest
- type: layer
value: IbexaConstraints
ruleset:
CodeSamples:
- IbexaContracts
- IbexaSiteAccessConfiguration
- IbexaRest
- IbexaConstraints