()
| 122 | type FooterMaxLineLenRule struct{ CheckLen int } |
| 123 | |
| 124 | func (r *FooterMaxLineLenRule) Name() string { return "footer-max-line-length" } |
| 125 | func (r *FooterMaxLineLenRule) Apply(s lint.RuleSetting) error { |
| 126 | return applyIntArg(&r.CheckLen, r.Name(), s) |
| 127 | } |