logginghandler/vendor/github.com/golangci/golangci-lint/pkg/golinters/asciicheck.go
Marvin Preuss d095180eb4
All checks were successful
continuous-integration/drone/push Build is passing
build: uses go modules for tool handling
2022-01-14 13:51:56 +01:00

20 lines
442 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,
).WithLoadMode(goanalysis.LoadModeSyntax)
}