47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package printers
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"fmt"
 | |
| 
 | |
| 	"github.com/golangci/golangci-lint/pkg/logutils"
 | |
| 	"github.com/golangci/golangci-lint/pkg/result"
 | |
| )
 | |
| 
 | |
| type github struct {
 | |
| }
 | |
| 
 | |
| const defaultGithubSeverity = "error"
 | |
| 
 | |
| // NewGithub output format outputs issues according to Github actions format:
 | |
| // https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message
 | |
| func NewGithub() Printer {
 | |
| 	return &github{}
 | |
| }
 | |
| 
 | |
| // print each line as: ::error file=app.js,line=10,col=15::Something went wrong
 | |
| func formatIssueAsGithub(issue *result.Issue) string {
 | |
| 	severity := defaultGithubSeverity
 | |
| 	if issue.Severity != "" {
 | |
| 		severity = issue.Severity
 | |
| 	}
 | |
| 
 | |
| 	ret := fmt.Sprintf("::%s file=%s,line=%d", severity, issue.FilePath(), issue.Line())
 | |
| 	if issue.Pos.Column != 0 {
 | |
| 		ret += fmt.Sprintf(",col=%d", issue.Pos.Column)
 | |
| 	}
 | |
| 
 | |
| 	ret += fmt.Sprintf("::%s (%s)", issue.Text, issue.FromLinter)
 | |
| 	return ret
 | |
| }
 | |
| 
 | |
| func (g *github) Print(_ context.Context, issues []result.Issue) error {
 | |
| 	for ind := range issues {
 | |
| 		_, err := fmt.Fprintln(logutils.StdOut, formatIssueAsGithub(&issues[ind]))
 | |
| 		if err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | 
