mirror of
https://github.com/mgechev/revive.git
synced 2024-12-10 10:40:23 +02:00
14 lines
273 B
Go
14 lines
273 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([]Failure) string
|
|
}
|