1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-08 11:37:20 +00:00
Files
gitea/vendor/github.com/mgechev/revive/formatter/severity.go
2020-04-03 22:29:12 +03:00

14 lines
422 B
Go
Vendored

package formatter
import "github.com/mgechev/revive/lint"
func severity(config lint.Config, failure lint.Failure) lint.Severity {
if config, ok := config.Rules[failure.RuleName]; ok && config.Severity == lint.SeverityError {
return lint.SeverityError
}
if config, ok := config.Directives[failure.RuleName]; ok && config.Severity == lint.SeverityError {
return lint.SeverityError
}
return lint.SeverityWarning
}