2018-02-03 19:37:38 -08:00
|
|
|
package lint
|
|
|
|
|
|
|
|
import (
|
|
|
|
"go/ast"
|
|
|
|
"go/token"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// SeverityWarning declares failures of type warning
|
|
|
|
SeverityWarning = "warning"
|
|
|
|
// SeverityError declares failures of type error.
|
|
|
|
SeverityError = "error"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Severity is the type for the failure types.
|
|
|
|
type Severity string
|
|
|
|
|
|
|
|
// FailurePosition returns the failure position
|
|
|
|
type FailurePosition struct {
|
|
|
|
Start token.Position
|
|
|
|
End token.Position
|
|
|
|
}
|
|
|
|
|
|
|
|
// Failure defines a struct for a linting failure.
|
|
|
|
type Failure struct {
|
|
|
|
Failure string
|
|
|
|
RuleName string
|
|
|
|
Category string
|
|
|
|
Position FailurePosition
|
|
|
|
Node ast.Node `json:"-"`
|
|
|
|
Confidence float64
|
|
|
|
// For future use
|
|
|
|
ReplacementLine string
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetFilename returns the filename.
|
|
|
|
func (f *Failure) GetFilename() string {
|
|
|
|
return f.Position.Start.Filename
|
|
|
|
}
|
2024-12-08 15:56:14 +01:00
|
|
|
|
|
|
|
const internalFailure = "REVIVE_INTERNAL"
|
|
|
|
|
|
|
|
// IsInternal returns true if this failure is internal, false otherwise.
|
|
|
|
func (f *Failure) IsInternal() bool {
|
|
|
|
return f.Category == internalFailure
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewInternalFailure yields an internal failure with the given message as failure message.
|
|
|
|
func NewInternalFailure(message string) Failure {
|
|
|
|
return Failure{
|
|
|
|
Category: internalFailure,
|
|
|
|
Failure: message,
|
|
|
|
}
|
|
|
|
}
|