workgroups/vendor/github.com/golangci/golangci-lint/pkg/golinters/tparallel.go
Marvin Preuss 1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
ci: drone yaml with reusable anchors
2021-09-24 17:34:17 +02:00

22 lines
464 B
Go

package golinters
import (
"github.com/moricho/tparallel"
"golang.org/x/tools/go/analysis"
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
)
func NewTparallel() *goanalysis.Linter {
analyzers := []*analysis.Analyzer{
tparallel.Analyzer,
}
return goanalysis.NewLinter(
"tparallel",
"tparallel detects inappropriate usage of t.Parallel() method in your Go test codes",
analyzers,
nil,
).WithLoadMode(goanalysis.LoadModeTypesInfo)
}