style(internal/parsers/clangtidy/convert.go): fix more and more naming conventions
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
张佳澈520370910044 2024-05-10 23:59:29 +08:00
parent d04f83e9fc
commit 3aa0b2e422

View File

@ -67,8 +67,8 @@ func levelFromString(levelString string) Level {
}
func isIgnored(line string) bool {
ignore_Regex := regexp.MustCompile("^error:.*$")
return ignore_Regex.MatchString(line)
ignoreRegex := regexp.MustCompile("^error:.*$")
return ignoreRegex.MatchString(line)
}
func parseMessage(line string) ClangMessage {