mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 11:36:29 +00:00
c28f7cb29f
Initial part of #435
21 lines
455 B
Go
21 lines
455 B
Go
package golinters
|
|
|
|
import (
|
|
"github.com/timakin/bodyclose/passes/bodyclose"
|
|
"golang.org/x/tools/go/analysis"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
|
)
|
|
|
|
func NewBodyclose() *goanalysis.Linter {
|
|
analyzers := []*analysis.Analyzer{
|
|
bodyclose.Analyzer,
|
|
}
|
|
|
|
return goanalysis.NewLinter(
|
|
"bodyclose",
|
|
"checks whether HTTP response body is closed successfully",
|
|
analyzers,
|
|
nil,
|
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|