mirror of
https://github.com/mgechev/revive.git
synced 2025-01-24 03:47:45 +02:00
14 lines
289 B
Go
14 lines
289 B
Go
package lint
|
|
|
|
// 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, RulesConfig) string
|
|
}
|