-
-
Notifications
You must be signed in to change notification settings - Fork 407
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
[Merged by Bors] - Add --strict
flag to cli
#2689
Conversation
Test262 conformance changes
|
Codecov Report
@@ Coverage Diff @@
## main #2689 +/- ##
==========================================
- Coverage 49.31% 49.28% -0.03%
==========================================
Files 395 397 +2
Lines 39649 39624 -25
==========================================
- Hits 19553 19530 -23
+ Misses 20096 20094 -2
... and 9 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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 addition!
bors r+ |
This PR adds the `--strict` flag to the CLI that enables strict mode on file/interactive mode execution. It's a bit annoying to have to prefix with `'use strict';` when trying to debug in interactive mode ```js >>> 'use strict'; .... // :( ``` It changes the following: - Adds `--strict` flag to CLI - update `README.md`
Pull request successfully merged into main. Build succeeded: |
--strict
flag to cli--strict
flag to cli
This PR adds the
--strict
flag to the CLI that enables strict mode on file/interactive mode execution.It's a bit annoying to have to prefix with
'use strict';
when trying to debug in interactive modeIt changes the following:
--strict
flag to CLIREADME.md