Skip to content
This repository was archived by the owner on Mar 18, 2025. It is now read-only.

Commit 5c06592

Browse files
committed
Omit parseEnvs linter issue
1 parent 166752f commit 5c06592

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/remotewrite/config.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,8 @@ func envMap(env map[string]string, prefix string) map[string]string {
286286
return result
287287
}
288288

289-
func parseEnvs(env map[string]string) (Config, error) {
289+
// TODO: try to migrate to github.com/mstoykov/envconfig like it's done on other projects?
290+
func parseEnvs(env map[string]string) (Config, error) { //nolint:funlen
290291
c := Config{
291292
Headers: make(map[string]string),
292293
}

0 commit comments

Comments
 (0)