-
Notifications
You must be signed in to change notification settings - Fork 0
HasCodeownersRule
CI edited this page Apr 1, 2020
·
5 revisions
This rule checks that repository has CODEOWNERS defined in .github folder
Code owners should be defined for 2 reasons
- Pull request reviewers are automatically added
- Other people have have better visibility that who knows about the project.
See https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners for more information
To ignore HasCodeownersRule validation, use following repository-validator.json
{
"Version":"1",
"IgnoredRules": [
"HasCodeownersRule"
]
}