mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 03:26:30 +00:00
82fd65665f
bidichk checks for dangerous unicode character sequences (https://github.com/golangci/golangci-lint/pull/2330)
18 lines
447 B
Go
18 lines
447 B
Go
package golinters
|
|
|
|
import (
|
|
"github.com/sylvia7788/contextcheck"
|
|
"golang.org/x/tools/go/analysis"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
|
)
|
|
|
|
func NewContextCheck() *goanalysis.Linter {
|
|
analyzer := contextcheck.NewAnalyzer()
|
|
return goanalysis.NewLinter(
|
|
"contextcheck",
|
|
"check the function whether use a non-inherited context",
|
|
[]*analysis.Analyzer{analyzer},
|
|
nil,
|
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|