mirror of
https://github.com/mgechev/revive.git
synced 2024-11-30 08:57:07 +02:00
14 lines
226 B
Go
14 lines
226 B
Go
|
package formatters
|
||
|
|
||
|
import "github.com/mgechev/golinter/visitors"
|
||
|
|
||
|
type FormatterMetadata struct {
|
||
|
Name string
|
||
|
Description string
|
||
|
Sample string
|
||
|
}
|
||
|
|
||
|
type Formatter interface {
|
||
|
Format([]visitors.Failure) string
|
||
|
}
|