forge
forge copied to clipboard
Inconsistent Capitalisation in Command Line Interface (CLI) Help Output.
Pre-flight checklist
- [X] I have read the contribution documentation for this project.
- [X] I agree to follow the code of conduct that this project uses.
- [X] I have searched the issue tracker for a feature request that matches the one I want to file, without success.
Problem description
In the presented CLI help output, the options -V, --version and -h, --help start with lowercase letters, while the remaining options and commands start with capital letters. This inconsistency may lead to confusion for users and detracts from the overall professionalism and consistency of the CLI interface.
Proposed solution
This is due to the default automated help and version message provided by commader. Checkout- https://github.com/tj/commander.js/blob/master/Readme.md
Alternatives considered
start all option and commad messages with lowercase letters. (not recommended)
Additional information
No response