18 lines
424 B
Go
18 lines
424 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 {
|
|
return goanalysis.NewLinter(
|
|
"bodyclose",
|
|
"checks whether HTTP response body is closed successfully",
|
|
[]*analysis.Analyzer{bodyclose.Analyzer},
|
|
nil,
|
|
).WithLoadMode(goanalysis.LoadModeTypesInfo)
|
|
}
|