Skip to content

Commit

Permalink
fix: update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkato committed Jan 7, 2024
1 parent c524fa5 commit 1f22d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/core/ini.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ func loadINI(cfg *Config, dry bool) (*ini.File, error) {
cfg.Flags.Local = true
sources = append(sources, []string{defaultCfg, cfg.Root}...)
} else if base == "" {
return nil, NewE100("loadINI", errors.New("no config file found"))
return nil, NewE100(".vale.ini not found", errors.New("no config file found"))
}

uCfg.BlockMode = false
Expand Down

0 comments on commit 1f22d94

Please sign in to comment.