31 lines
719 B
Go
31 lines
719 B
Go
package golinters
|
|
|
|
import (
|
|
"context"
|
|
|
|
megacheckAPI "github.com/golangci/go-tools/cmd/megacheck"
|
|
"github.com/golangci/golangci-lint/pkg/result"
|
|
)
|
|
|
|
type Megacheck struct{}
|
|
|
|
func (Megacheck) Name() string {
|
|
return "megacheck"
|
|
}
|
|
|
|
func (m Megacheck) Run(ctx context.Context, lintCtx *Context) (*result.Result, error) {
|
|
c := lintCtx.RunCfg().Megacheck
|
|
issues := megacheckAPI.Run(lintCtx.Program, lintCtx.LoaderConfig, c.EnableStaticcheck, c.EnableGosimple, c.EnableUnused)
|
|
|
|
res := &result.Result{}
|
|
for _, i := range issues {
|
|
res.Issues = append(res.Issues, result.Issue{
|
|
File: i.Position.Filename,
|
|
LineNumber: i.Position.Line,
|
|
Text: i.Text,
|
|
FromLinter: m.Name(),
|
|
})
|
|
}
|
|
return res, nil
|
|
}
|