Skip to content

Commit

Permalink
refactor(config): update config error message
Browse files Browse the repository at this point in the history
  • Loading branch information
muthukrishnan24 committed Mar 6, 2022
1 parent 90834e3 commit fd3ae37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func Parse(confPath string) (*lint.Config, error) {
}

if conf.Formatter == "" {
return nil, errors.New("conf error: formatter is empty")
return nil, errors.New("config error: formatter is empty")
}

err = isValidVersion(conf.MinVersion)
Expand Down

0 comments on commit fd3ae37

Please sign in to comment.