Ludovic Fernandez 7bbbe77e5e
Some checks failed
Release a tag / release (push) Has been cancelled
Release a tag / docker-release (map[Dockerfile:build/Dockerfile.alpine]) (push) Has been cancelled
Release a tag / docker-release (map[Dockerfile:build/Dockerfile]) (push) Has been cancelled
feat: automatic Go version detection (#2669)
* feat: disable unsupported go1.18 govet analyzers
* fix: inactivate interfacer with go1.18
2022-03-23 16:54:11 +01:00

36 lines
737 B
Go

package linter
import (
"context"
"golang.org/x/tools/go/analysis"
"github.com/golangci/golangci-lint/pkg/result"
)
type Linter interface {
Run(ctx context.Context, lintCtx *Context) ([]result.Issue, error)
Name() string
Desc() string
}
type Noop struct {
name string
desc string
run func(pass *analysis.Pass) (interface{}, error)
}
func (n Noop) Run(_ context.Context, lintCtx *Context) ([]result.Issue, error) {
lintCtx.Log.Warnf("%s is disabled because of go1.18."+
" You can track the evolution of the go1.18 support by following the https://github.com/golangci/golangci-lint/issues/2649.", n.name)
return nil, nil
}
func (n Noop) Name() string {
return n.name
}
func (n Noop) Desc() string {
return n.desc
}