-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
fix(typescript-estree): correct parenthesized optional chain AST #1141
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
Conversation
Thanks for the PR, @bradzacher! typescript-eslint is a 100% community driven project, and we are incredibly grateful that you are contributing to that community. The core maintainers work on this in their personal time, so please understand that it may not be possible for them to review your work immediately. Thanks again! 🙏 Please, if you or your company is finding typescript-eslint valuable, help us sustain the project by sponsoring it transparently on https://opencollective.com/typescript-eslint. As a thank you, your profile/company logo will be added to our main README which receives thousands of unique visitors per day. |
Codecov Report
@@ Coverage Diff @@
## master #1141 +/- ##
==========================================
- Coverage 94.07% 94.03% -0.04%
==========================================
Files 120 120
Lines 5214 5217 +3
Branches 1443 1445 +2
==========================================
+ Hits 4905 4906 +1
Misses 177 177
- Partials 132 134 +2
|
Please update also |
|
5f68032
to
5e21bc0
Compare
]; | ||
extra.log(versionWarning.join('\n\n')); | ||
if (!isRunningSupportedTypeScriptVersion && !warnedAboutTSVersion) { | ||
const isTTY = typeof process === undefined ? false : process.stdout.isTTY; |
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.
In Prettier's build configuration, we have process
, but not process.stdout
. 🤷♂️
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.
darn...
probably just better to do what parser
does, and clear the logger function:
typescript-eslint/packages/parser/src/parser.ts
Lines 87 to 93 in d4703e1
const warnOnUnsupportedTypeScriptVersion = validateBoolean( | |
options.warnOnUnsupportedTypeScriptVersion, | |
true, | |
); | |
if (!warnOnUnsupportedTypeScriptVersion) { | |
parserOptions.loggerFn = false; | |
} |
(note that this logger function isn't used anywhere else, it's only used to log the warning)
Fixes #1139
Also fixes the package not working in the browser (
ts.sys === undefined
in the browser).The snapshots are getting pretty ugly now.
I think we need a new system for them (#1142).
I tested this via a local build of ASTExplorer.
Sidebar - we should really maintain our own version of it (#1143).