Isaev Denis 95ec0cf21e
dramatically reduce memory usage ()
Run all linters per package. It allows unloading package data when it's
processed. It dramatically reduces memory (and CPU because of GC) usage.

Relates: 
2019-09-30 16:19:41 +03:00

22 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)
}