add nolint

This commit is contained in:
Hyatt 2023-11-07 07:25:07 -06:00
parent 3d78e41e34
commit f351698afa
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
2 changed files with 3 additions and 2 deletions

View File

@ -23,7 +23,8 @@
"nolint", "nolint",
"goconst", "goconst",
"TZUTC", "TZUTC",
"webserver" "webserver",
"gocognit"
], ],
"comment": { "comment": {

View File

@ -171,7 +171,7 @@ func typeConversion(t, v string) (interface{}, error) {
return nil, fmt.Errorf("Unable to identify type.") 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 { for _, info := range cfgInfo {
switch info.Type.String() { switch info.Type.String() {
case "string": case "string":