mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-13 12:06:29 +00:00
22 lines
464 B
Go
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)
|
||
|
}
|