Skip to content

Commit 6594b50

Browse files
committed
fix: lll
1 parent efb2763 commit 6594b50

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/config/loader.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ func (l *Loader) appendStringSlice(name string, current *[]string) {
134134

135135
func (l *Loader) checkConfigurationVersion() error {
136136
if l.cfg.GetConfigDir() != "" && l.cfg.Version != "2" {
137-
return fmt.Errorf("unsupported version of the configuration: %q (require configuration v2). See https://golangci-lint.run/product/migration-guide for migration instructions.", l.cfg.Version)
137+
return fmt.Errorf("unsupported version of the configuration: %q "+
138+
"See https://golangci-lint.run/product/migration-guide for migration instructions", l.cfg.Version)
138139
}
139140

140141
return nil

0 commit comments

Comments
 (0)