Latest golangci-lint version would bring this linting error ``` cmd/validator/validator.go:143:2: deep-exit: calls to flag.Parse only in main() or init() functions (revive) flag.Parse() ``` There are two solutions here - ignore it with a //nolint - refactor the code to use flag.NewFlagSet (see https://github.com/mgechev/revive/issues/1612 ) What would be your call here @kehoecj ?
Latest golangci-lint version would bring this linting error
There are two solutions here
What would be your call here @kehoecj ?