mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 03:26:30 +00:00
c28f7cb29f
Initial part of #435
21 lines
489 B
Go
21 lines
489 B
Go
package golinters
|
|
|
|
import (
|
|
"github.com/kunwardeep/paralleltest/pkg/paralleltest"
|
|
"golang.org/x/tools/go/analysis"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
|
)
|
|
|
|
func NewParallelTest() *goanalysis.Linter {
|
|
analyzers := []*analysis.Analyzer{
|
|
paralleltest.NewAnalyzer(),
|
|
}
|
|
|
|
return goanalysis.NewLinter(
|
|
"paralleltest",
|
|
"paralleltest detects missing usage of t.Parallel() method in your Go test",
|
|
analyzers,
|
|
nil,
|
|
).WithLoadMode(goanalysis.LoadModeSyntax)
|
|
}
|