-
Notifications
You must be signed in to change notification settings - Fork 14
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
refactor: clap
upgrade to v4
#109
Conversation
clap
upgrade(v3 to v4) and refactoring
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your PR!
Please check the review
@jopemachine I have applied the code. Please review it. |
clap
upgrade(v3 to v4) and refactoringclap
upgrade to v4
i have a question. do you recommend not to write comments as much as possible? |
No, I'm not saying don't comment; rather, the code should be self-explanatory. Comments should explain things that cannot be explained by the code itself, not repeat what the code already expresses. I think this code is already sufficiently self-explanatory, so additional comments are not necessary. |
@CHOUMnote Thank you for your contribution! ❤️ |
Previously, we were using
version 3 of Clap
, so we upgraded toversion 4
. However, this caused compile errors due to the version upgrade, leading us to remove a lot of legacy code and refactor the project.Note) I tested the
debug
option as thoroughly as possible, but I was unable to test thedump
option because I didn't know how to use it.