Expand description
CODEOWNERS file parser and ownership lookup. CODEOWNERS file parser and ownership lookup.
Parses GitHub/GitLab-style CODEOWNERS files and matches file paths
to their owners. Used by --group-by owner to group analysis output
by team ownership.
§Pattern semantics
CODEOWNERS patterns follow gitignore-like rules:
*.jsmatches any.jsfile in any directory/docs/*matches files directly indocs/(root-anchored)docs/matches everything underdocs/- Last matching rule wins
- First owner on a multi-owner line is the primary owner
Structs§
- Code
Owners - Parsed CODEOWNERS file for ownership lookup.
Constants§
- UNOWNED_
LABEL - Label for files that match no CODEOWNERS rule.
Functions§
- directory_
group - Extract the first path component for
--group-by directorygrouping.