mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
c28f7cb29f
Initial part of #435
19 lines
442 B
Go
19 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)
|
|
}
|