dev: gofmt -w -r 'interface{} -> any' pkg scripts (#3742)

This commit is contained in:
Oleksandr Redko 2023-03-28 17:22:55 +03:00 committed by GitHub
parent 6ba102656d
commit 1e700732e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
88 changed files with 180 additions and 180 deletions

View file

@ -17,7 +17,7 @@ type Linter interface {
type Noop struct {
name string
desc string
run func(pass *analysis.Pass) (interface{}, error)
run func(pass *analysis.Pass) (any, error)
}
func (n Noop) Run(_ context.Context, lintCtx *Context) ([]result.Issue, error) {