We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03ffd6e commit 9437573Copy full SHA for 9437573
internal/commitlinter/defaultlinter/rules.go
@@ -22,7 +22,6 @@ func RuleSubjectNoLeadingUpperCase(msg commitmsg.CommitMessage) error {
22
return fmt.Errorf("no subject detected: %w", ErrInvalidSubject)
23
} else if first == utf8.RuneError && size == 1 {
24
return fmt.Errorf("bad subject: %w", ErrInvalidCharacter)
25
-
26
}
27
28
if unicode.IsUpper(first) {
0 commit comments