generate parts of README automatically

This commit is contained in:
golangci 2018-06-02 11:36:50 +03:00
parent 5236feb1ae
commit 034728ec94
31 changed files with 849 additions and 277 deletions

13
pkg/lint/linter/linter.go Normal file
View file

@ -0,0 +1,13 @@
package linter
import (
"context"
"github.com/golangci/golangci-lint/pkg/result"
)
type Linter interface {
Run(ctx context.Context, lintCtx *Context) ([]result.Issue, error)
Name() string
Desc() string
}