docs: update compliance tool examples with generic naming conventions

This commit is contained in:
ofir-frd 2025-08-29 15:53:22 +03:00
parent a53a9358ed
commit 08a683c9a4

View file

@ -168,7 +168,7 @@ Qodo Merge supports hierarchical compliance checklists using a dedicated global
```bash ```bash
pr-agent-settings/ pr-agent-settings/
├── metadata.yaml # Maps repos/folders to compliance paths ├── metadata.yaml # Maps repos/folders to compliance paths
└── compliance_standards/ # Root for all compliance definitions └── codebase_standards/ # Root for all compliance definitions
├── global/ # Global compliance, inherited widely ├── global/ # Global compliance, inherited widely
│ └── pr_compliance_checklist.yaml │ └── pr_compliance_checklist.yaml
├── groups/ # For groups of repositories ├── groups/ # For groups of repositories
@ -222,10 +222,10 @@ monorepo-name:
pr_compliance_checklist_paths: pr_compliance_checklist_paths:
- "monorepo-name" - "monorepo-name"
monorepo_subprojects: monorepo_subprojects:
frontend: service-a:
pr_compliance_checklist_paths: pr_compliance_checklist_paths:
- "monorepo-name/service-a" - "monorepo-name/service-a"
backend: service-b:
pr_compliance_checklist_paths: pr_compliance_checklist_paths:
- "monorepo-name/service-b" - "monorepo-name/service-b"
``` ```