golangci-lint/pkg/golinters/asciicheck.go
2020-04-22 19:55:05 +03:00

20 lines
402 B
Go

package golinters
import (
"github.com/tdakkota/asciicheck"
"golang.org/x/tools/go/analysis"
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
)
func NewAsciicheck() *goanalysis.Linter {
return goanalysis.NewLinter(
"asciicheck",
"Simple linter to check that your code does not contain non-ASCII identifiers",
[]*analysis.Analyzer{
asciicheck.NewAnalyzer(),
},
nil,
)
}