You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use certain things like choices or default values the outputted help looks quite convoluted to me. It would be nice to optionally hide that output of format it differently.
E.g. I have this:
Options:
-l, --log-level Set log level
[choices: "silly", "verbose", "info", "warn", "error", "silent"] [default:
"info"]
-v, --version Show version number [boolean]
-h, --help Show help [boolean]
Maybe something like this is nicer:
Options:
-l, --log-level Set log level (default: "info")
[ "silly", "verbose", "info", "warn", "error", "silent" ]
-v, --version Show version number [boolean]
-h, --help Show help [boolean]
Options:
-l, --log-level Set log level (defaults to "info" or use "silly", "verbose", "warn", "error", "silent")
-v, --version Show version number [boolean]
-h, --help Show help [boolean]
Options:
-l, --log-level Set log level (defaults to "info")
-v, --version Show version number [boolean]
-h, --help Show help [boolean]
Options:
-l, --log-level Set log level (info,silly,verbose,warn,error,silent)
-v, --version Show version number [boolean]
-h, --help Show help [boolean]
The text was updated successfully, but these errors were encountered:
When I use certain things like choices or default values the outputted help looks quite convoluted to me. It would be nice to optionally hide that output of format it differently.
E.g. I have this:
Maybe something like this is nicer:
The text was updated successfully, but these errors were encountered: