-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
No warning when incorrect options are passed with changed parameters order #125
Comments
This bug is fixed by my pull request #121. |
Perfect, thanks a lot! |
If you aren't using |
That's a nice bit. We'll check that or maybe your patch will get pulled in the meantime. Thanks for sharing! |
This issue has not had any activity in over six months. It isn't likely to get acted on due to this report. Feel free to open a new issue if it comes up again, with new information and renewed interest. Thank you for your contributions. |
Let's take the following code (assume file is named demo.js).
Let's try to run it:
./demo.js --test 5
- no errors./demo.js --test 5 demo.js
- no errors./demo.js --test 5 --test2 demo.js
- unknown option '--test2'./demo.js demo.js --test 5 --test2
- no errorsApparently extra arguments where added at the beginning suppress errors.
The text was updated successfully, but these errors were encountered: