(_ lint.RuleSetting)
| 47 | |
| 48 | func (r *FooterLeadingBlankRule) Name() string { return "footer-leading-blank" } |
| 49 | func (r *FooterLeadingBlankRule) Apply(_ lint.RuleSetting) error { return nil } |
| 50 | func (r *FooterLeadingBlankRule) Validate(msg lint.Commit) (*lint.Issue, bool) { |
| 51 | footer := msg.Footer() |
| 52 | if footer == "" { |
no outgoing calls