Ver Fonte

refactor(fmt): newline after each argument

ayn2op há 11 meses atrás
pai
commit
2a75c76c64
1 ficheiros alterados com 10 adições e 2 exclusões
  1. 10 2
      internal/config/config.go

+ 10 - 2
internal/config/config.go

@@ -62,7 +62,9 @@ var defaultCfg []byte
 func DefaultPath() string {
 	path, err := os.UserConfigDir()
 	if err != nil {
-		slog.Info("user configuration directory path cannot be determined; falling back to the current directory path")
+		slog.Info(
+			"user configuration directory path cannot be determined; falling back to the current directory path",
+		)
 		path = "."
 	}
 
@@ -79,7 +81,13 @@ func Load(path string) (*Config, error) {
 	}
 
 	if os.IsNotExist(err) {
-		slog.Info("the configuration file does not exist, falling back to the default configuration", "path", path, "err", err)
+		slog.Info(
+			"the configuration file does not exist, falling back to the default configuration",
+			"path",
+			path,
+			"err",
+			err,
+		)
 		handleDefaults(cfg)
 		return cfg, nil
 	}