()
| 188 | type DescriptionMinLenRule struct{ CheckLen int } |
| 189 | |
| 190 | func (r *DescriptionMinLenRule) Name() string { return "description-min-length" } |
| 191 | func (r *DescriptionMinLenRule) Apply(s lint.RuleSetting) error { |
| 192 | return applyIntArg(&r.CheckLen, r.Name(), s) |
| 193 | } |