We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a990ecd commit e1fea71Copy full SHA for e1fea71
1 file changed
options/config.go
@@ -384,13 +384,13 @@ func Read() (Config, error) {
384
385
func (c *Config) check() {
386
if c.Version == "" {
387
- fmt.Println("Config file is outdated. Please update it with: style -create")
+ fmt.Println("[WARNING] Config file is outdated. Please update it with: style -create")
388
return
389
}
390
391
if c.Version != version {
392
fmt.Printf(
393
- "Config version (%v) is not the same as the current version (%v).\n",
+ "[WARNING] Config version (%v) is not the same as the current version (%v).\n",
394
c.Version,
395
version,
396
)
0 commit comments