-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confusing help text for -g
/--ignore-globs
option
#567
Comments
Also, help text has whole bunch of extra empty lines, so the output unnecessarily doesn't fit into one screen and I have to scroll up to see it in its entirety. |
Sorry for the confusion. The correct way to provide the arguments on the command line is comma separated. This gets automatically split on commas by the You can see here where the globs argument is defined: DevSkim/DevSkim-DotNet/Microsoft.DevSkim.CLI/Options/BaseAnalyzeCommandOptions.cs Line 45 in 87ad45b
I believe the help text displays this as space separated because the actual default value is an IEnumerable as if it had already been parsed. We can investigate if it possible to change how this is represented to the user, as I agree it may be confusing that the spaces are not rendered as part of the default. As for the empty lines, do you see something like this, with one line break between each argument or are you seeing multiple line breaks between each argument? We can also look into if its possible to remove those line breaks between argument specifications, as there are a large number of arguments so condensing it may be helpful. |
Yes, that's exactly what I am talking about. When I am experimenting with options and mess up so devskim doesn't actually do anything, it produces an error, then follows it with the help screen which overflows the output and I have to scroll up to see what went wrong. Just try running |
It looks like removing the extra newlines is a supported configuration change, but it requires a bit of refactoring as we currently use the default parser (https://github.com/commandlineparser/commandline/wiki/HelpText-Configuration). Its not clear to me that it would be easy to change the default values to express the comma separator, but we can investigate that as well. |
None of it is a big deal, just an inconvenience, so I don't expect any priority for that. And should the missing comma in defaults be actually reported to CommandLineParser? |
@agr Thanks for your understanding. As for the missing commas, that does seem to me like an oversight in the default help generator from command line parser. I didn't immediately see any configurable option to address that - unlike removing the extra line - if there isn't one it's likely something that will need to addressed there first. |
It looks like the separator missing from the Default value is already a reported issue in the CommandLine repo: commandlineparser/commandline#490 I opened a PR to resolve it: commandlineparser/commandline#895 |
Describe the bug
Running
devskim analyze --help
produces this line:Notice, the text says "Comma-separated", but the default value is space-separated. So, which is it?
To Reproduce
Steps to reproduce the behavior:
devskim analyze --help
Expected behavior
Displayed defaults/examples should be consistent with description text.
Screenshots
Versions(please complete the following information):
The text was updated successfully, but these errors were encountered: