mirror of
https://github.com/mgechev/revive.git
synced 2025-02-03 13:11:25 +02:00
14 lines
298 B
Go
14 lines
298 B
Go
package linter
|
|
|
|
// FormatterMetadata configuration of a formatter
|
|
type FormatterMetadata struct {
|
|
Name string
|
|
Description string
|
|
Sample string
|
|
}
|
|
|
|
// Formatter defines an interface for failure formatters
|
|
type Formatter interface {
|
|
Format(<-chan Failure, <-chan string, int) string
|
|
}
|