mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
55 lines
982 B
Go
55 lines
982 B
Go
package rule
|
|
|
|
import (
|
|
"go/ast"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
)
|
|
|
|
// UseAnyRule lints given else constructs.
|
|
type UseAnyRule struct{}
|
|
|
|
// Apply applies the rule to given file.
|
|
func (r *UseAnyRule) Apply(file *lint.File, _ lint.Arguments) []lint.Failure {
|
|
var failures []lint.Failure
|
|
|
|
walker := lintUseAny{
|
|
onFailure: func(failure lint.Failure) {
|
|
failures = append(failures, failure)
|
|
},
|
|
}
|
|
fileAst := file.AST
|
|
ast.Walk(walker, fileAst)
|
|
|
|
return failures
|
|
}
|
|
|
|
// Name returns the rule name.
|
|
func (r *UseAnyRule) Name() string {
|
|
return "use-any"
|
|
}
|
|
|
|
type lintUseAny struct {
|
|
onFailure func(lint.Failure)
|
|
}
|
|
|
|
func (w lintUseAny) Visit(n ast.Node) ast.Visitor {
|
|
it, ok := n.(*ast.InterfaceType)
|
|
if !ok {
|
|
return w
|
|
}
|
|
|
|
if len(it.Methods.List) != 0 {
|
|
return w // it is not and empty interface
|
|
}
|
|
|
|
w.onFailure(lint.Failure{
|
|
Node: n,
|
|
Confidence: 1,
|
|
Category: "naming",
|
|
Failure: "since GO 1.18 'interface{}' can be replaced by 'any'",
|
|
})
|
|
|
|
return w
|
|
}
|