From f351698afa69eabd3f5be83383215384f36068b7 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Tue, 7 Nov 2023 07:25:07 -0600 Subject: [PATCH] add nolint --- .vscode/settings.json | 3 ++- internal/config/envconfig.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index df5bfac..68119a6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -23,7 +23,8 @@ "nolint", "goconst", "TZUTC", - "webserver" + "webserver", + "gocognit" ], "comment": { diff --git a/internal/config/envconfig.go b/internal/config/envconfig.go index 58f9438..139ab1b 100644 --- a/internal/config/envconfig.go +++ b/internal/config/envconfig.go @@ -171,7 +171,7 @@ func typeConversion(t, v string) (interface{}, error) { return nil, fmt.Errorf("Unable to identify type.") } -func (cfg *Config) parseFlags(cfgInfo []structInfo) error { +func (cfg *Config) parseFlags(cfgInfo []structInfo) error { //nolint:gocognit for _, info := range cfgInfo { switch info.Type.String() { case "string":