(commitMsg string, err error)
| 102 | } |
| 103 | |
| 104 | func (l *Linter) parserErrorRule(commitMsg string, err error) []*Issue { |
| 105 | issue := NewIssue(err.Error()) |
| 106 | issue.ruleName = "parser" |
| 107 | issue.severity = SeverityError |
| 108 | return []*Issue{issue} |
| 109 | } |
no test coverage detected