40 lines
		
	
	
		
			609 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			609 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package printers
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"encoding/json"
 | 
						|
	"io"
 | 
						|
 | 
						|
	"github.com/golangci/golangci-lint/pkg/report"
 | 
						|
	"github.com/golangci/golangci-lint/pkg/result"
 | 
						|
)
 | 
						|
 | 
						|
type JSON struct {
 | 
						|
	rd *report.Data
 | 
						|
	w  io.Writer
 | 
						|
}
 | 
						|
 | 
						|
func NewJSON(rd *report.Data, w io.Writer) *JSON {
 | 
						|
	return &JSON{
 | 
						|
		rd: rd,
 | 
						|
		w:  w,
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
type JSONResult struct {
 | 
						|
	Issues []result.Issue
 | 
						|
	Report *report.Data
 | 
						|
}
 | 
						|
 | 
						|
func (p JSON) Print(ctx context.Context, issues []result.Issue) error {
 | 
						|
	res := JSONResult{
 | 
						|
		Issues: issues,
 | 
						|
		Report: p.rd,
 | 
						|
	}
 | 
						|
	if res.Issues == nil {
 | 
						|
		res.Issues = []result.Issue{}
 | 
						|
	}
 | 
						|
 | 
						|
	return json.NewEncoder(p.w).Encode(res)
 | 
						|
}
 |