
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: #337
22 lines
455 B
Go
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)
|
|
}
|