-
Notifications
You must be signed in to change notification settings - Fork 7
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
Command and Parser #34
Conversation
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.
Good job with refactoring the code, especially for the default values and regexes!
The only major issue is that it currently throws an error when the user omits optional prefixes, which can be easily fixed by first checking if the prefix exists and then using the default values if they don't.
Besides that, it would be good to use the existing constructors instead of creating new ones.
Lastly do make sure that the checks are passing~ |
Closes #26 and #31 .