
This commit adds full support for bodyclose linter (https://github.com/timakin/bodyclose), which checks if an `http.Body` element is correctly closed after usage. Since it can be used via `go/analysis', I followed the `govet' example as suggested by https://github.com/golangci/golangci-lint/wiki/How-to-add-a-custom-linter. This commit is fully tested, and contains a (flawed) test program which calls `http.Get()' on `https://google.com' and does not closes its corresponding `http.Body'.
21 lines
411 B
Go
21 lines
411 B
Go
package golinters
|
|
|
|
import (
|
|
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
|
|
"github.com/timakin/bodyclose/passes/bodyclose"
|
|
"golang.org/x/tools/go/analysis"
|
|
)
|
|
|
|
func NewBodyclose() *goanalysis.Linter {
|
|
analyzers := []*analysis.Analyzer{
|
|
bodyclose.Analyzer,
|
|
}
|
|
|
|
return goanalysis.NewLinter(
|
|
"bodyclose",
|
|
"checks whether HTTP response body is closed successfully",
|
|
analyzers,
|
|
nil,
|
|
)
|
|
}
|