woodpecker/vendor/github.com/golangci/golangci-lint/pkg/exitcodes/exitcodes.go
Lukas c28f7cb29f
Add golangci-lint (#502)
Initial part of #435
2021-11-14 21:01:54 +01:00

34 lines
536 B
Go

package exitcodes
const (
Success = 0
IssuesFound = 1
WarningInTest = 2
Failure = 3
Timeout = 4
NoGoFiles = 5
NoConfigFileDetected = 6
ErrorWasLogged = 7
)
type ExitError struct {
Message string
Code int
}
func (e ExitError) Error() string {
return e.Message
}
var (
ErrNoGoFiles = &ExitError{
Message: "no go files to analyze",
Code: NoGoFiles,
}
ErrFailure = &ExitError{
Message: "failed to analyze",
Code: Failure,
}
)
// 1