40 lines
663 B
Go
40 lines
663 B
Go
package printers
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/logutils"
|
|
"github.com/golangci/golangci-lint/pkg/result"
|
|
)
|
|
|
|
type JSON struct{}
|
|
|
|
func NewJSON() *JSON {
|
|
return &JSON{}
|
|
}
|
|
|
|
type JSONResult struct {
|
|
Issues []result.Issue
|
|
}
|
|
|
|
func (JSON) Print(ctx context.Context, issues <-chan result.Issue) (bool, error) {
|
|
allIssues := []result.Issue{}
|
|
for i := range issues {
|
|
allIssues = append(allIssues, i)
|
|
}
|
|
|
|
res := JSONResult{
|
|
Issues: allIssues,
|
|
}
|
|
|
|
outputJSON, err := json.Marshal(res)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
fmt.Fprint(logutils.StdOut, string(outputJSON))
|
|
return len(allIssues) != 0, nil
|
|
}
|