You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -208,6 +208,8 @@ You can configure `codeowners-generator` from several places:
208
208
209
209
- **check** (`--check`): It will fail if the CODEOWNERS generated doesn't match the current (or missing) CODEOWNERS . Useful for validating that the CODEOWNERS file is not out of date during CI.
210
210
211
+
- **hidden-directories** (`--hidden-directories`): Also include searching in hidden (dot) directories.
Copy file name to clipboardExpand all lines: src/bin/cli.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ program
43
43
'--check',
44
44
'It will fail if the CODEOWNERS generated does not match the current (or missing) CODEOWNERS. Useful for validating that the CODEOWNERS file is up to date date during CI'
45
45
)
46
+
.option('--hidden-directories','Includes hidden directories when searching for CODEOWNERS files',false)
0 commit comments