1
0
mirror of https://github.com/mgechev/revive.git synced 2024-12-10 10:40:23 +02:00
revive/linter/formatter.go

14 lines
273 B
Go
Raw Normal View History

2018-01-22 04:04:41 +02:00
package linter
2017-07-04 19:04:23 +02:00
2017-08-28 01:57:16 +02:00
// FormatterMetadata configuration of a formatter
2017-07-04 19:04:23 +02:00
type FormatterMetadata struct {
Name string
Description string
Sample string
}
2017-08-28 01:57:16 +02:00
// Formatter defines an interface for failure formatters
2017-07-04 19:04:23 +02:00
type Formatter interface {
2018-01-22 04:04:41 +02:00
Format([]Failure) string
2017-07-04 19:04:23 +02:00
}