style(internal/parsers/clangtidy/convert.go): fix more and more naming conventions
This commit is contained in:
parent
d04f83e9fc
commit
3aa0b2e422
|
@ -67,8 +67,8 @@ func levelFromString(levelString string) Level {
|
||||||
}
|
}
|
||||||
|
|
||||||
func isIgnored(line string) bool {
|
func isIgnored(line string) bool {
|
||||||
ignore_Regex := regexp.MustCompile("^error:.*$")
|
ignoreRegex := regexp.MustCompile("^error:.*$")
|
||||||
return ignore_Regex.MatchString(line)
|
return ignoreRegex.MatchString(line)
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseMessage(line string) ClangMessage {
|
func parseMessage(line string) ClangMessage {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user