mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
839 B
34 lines
839 B
package lint
|
|
|
|
import "fmt"
|
|
|
|
// Severity indicatest the severity of a Message.
|
|
type Severity int
|
|
|
|
const (
|
|
// UnknownSev indicates that the severity of the error is unknown, and should not stop processing.
|
|
UnknownSev = iota
|
|
// WarningSev indicates that something does not meet code standards, but will likely function.
|
|
WarningSev
|
|
// ErrorSev indicates that something will not likely function.
|
|
ErrorSev
|
|
)
|
|
|
|
// sev matches the *Sev states.
|
|
var sev = []string{"INFO", "WARNING", "ERROR"}
|
|
|
|
// Message is a linting output message
|
|
type Message struct {
|
|
// Severity is one of the *Sev constants
|
|
Severity int
|
|
// Text contains the message text
|
|
Text string
|
|
}
|
|
|
|
// String prints a string representation of this Message.
|
|
//
|
|
// Implements fmt.Stringer.
|
|
func (m Message) String() string {
|
|
return fmt.Sprintf("[%s] %s", sev[m.Severity], m.Text)
|
|
}
|