Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update deptrac.yaml for qossmic/deptrac compatibility #1205

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions deptrac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,90 +10,90 @@ parameters:
collectors:
- type: bool
must:
- type: className
regex: .*[A-Za-z]+Model$
- type: class
value: .*[A-Za-z]+Model$
must_not:
- type: directory
regex: vendor/.*
value: vendor/.*
- name: Vendor Model
collectors:
- type: bool
must:
- type: className
regex: .*[A-Za-z]+Model$
- type: class
value: .*[A-Za-z]+Model$
- type: directory
regex: vendor/.*
value: vendor/.*
- name: Controller
collectors:
- type: bool
must:
- type: className
regex: .*\/Controllers\/.*
- type: class
value: .*\/Controllers\/.*
must_not:
- type: directory
regex: vendor/.*
value: vendor/.*
- name: Vendor Controller
collectors:
- type: bool
must:
- type: className
regex: .*\/Controllers\/.*
- type: class
value: .*\/Controllers\/.*
- type: directory
regex: vendor/.*
value: vendor/.*
- name: Config
collectors:
- type: bool
must:
- type: directory
regex: src/Config/.*
value: src/Config/.*
must_not:
- type: className
regex: .*Services
- type: class
value: .*Services
- type: directory
regex: vendor/.*
value: vendor/.*
- name: Vendor Config
collectors:
- type: bool
must:
- type: directory
regex: vendor/.*/Config/.*
value: vendor/.*/Config/.*
must_not:
- type: className
regex: .*Services
- type: class
value: .*Services
- name: Entity
collectors:
- type: bool
must:
- type: directory
regex: src/Entities/.*
value: src/Entities/.*
must_not:
- type: directory
regex: vendor/.*
value: vendor/.*
- name: Vendor Entity
collectors:
- type: bool
must:
- type: directory
regex: vendor/.*/Entities/.*
value: vendor/.*/Entities/.*
- name: View
collectors:
- type: bool
must:
- type: directory
regex: src/Views/.*
value: src/Views/.*
must_not:
- type: directory
regex: vendor/.*
value: vendor/.*
- name: Vendor View
collectors:
- type: bool
must:
- type: directory
regex: vendor/.*/Views/.*
value: vendor/.*/Views/.*
- name: Service
collectors:
- type: className
regex: .*Services.*
- type: class
value: .*Services.*
ruleset:
Entity:
- Config
Expand Down