We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9ba88d commit 3fc5dfbCopy full SHA for 3fc5dfb
pkg/config/formatters.go
@@ -14,7 +14,7 @@ type Formatters struct {
14
func (f *Formatters) Validate() error {
15
for _, n := range f.Enable {
16
if !slices.Contains(getAllFormatterNames(), n) {
17
- return fmt.Errorf("%s is a formatter", n)
+ return fmt.Errorf("%s is not a formatter", n)
18
}
19
20
0 commit comments