In the Lighthouse account manager currently the validator-dir flag needs to come directly after the validator subcommand, which gives it quite poor UX and discoverability.
I think there are options in clap (our CLI parser) to mark certain flags as global. I'm not sure if global is overkill though, I should hope it only applies from that subcommand down and not all the way up to the top-level lighthouse command.
Description
In the Lighthouse account manager currently the
validator-dir
flag needs to come directly after thevalidator
subcommand, which gives it quite poor UX and discoverability.i.e. you need to write
but can't write
Version
Lighthouse v3.3.0
Steps to resolve
I think there are options in
clap
(our CLI parser) to mark certain flags as global. I'm not sure if global is overkill though, I should hope it only applies from that subcommand down and not all the way up to the top-levellighthouse
command.