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":