1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-30 08:57:07 +02:00
revive/formatters/formatter.go

14 lines
226 B
Go
Raw Normal View History

2017-07-04 19:04:23 +02:00
package formatters
import "github.com/mgechev/golinter/visitors"
type FormatterMetadata struct {
Name string
Description string
Sample string
}
type Formatter interface {
Format([]visitors.Failure) string
}