-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat: support ESTree optional chaining representation #2308
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. |
8ba6e1c
to
f31b792
Compare
f31b792
to
2411e6f
Compare
Codecov Report
@@ Coverage Diff @@
## v4 #2308 +/- ##
==========================================
- Coverage 93.09% 93.05% -0.05%
==========================================
Files 284 285 +1
Lines 9097 9109 +12
Branches 2499 2503 +4
==========================================
+ Hits 8469 8476 +7
- Misses 302 303 +1
- Partials 326 330 +4
Flags with carried forward coverage won't be shown. Click here to find out more.
|
BREAKING CHANGE:
This changes the AST structure to the new ESTree representation for optional chaining.
types
visitor-keys
scope-manager
typescript-estree
parser
experimental-utils
eslint-plugin
eslint-plugin-internal
I also ran a quick sanity "integration test" by linking
@typescript-eslint/parser
into a checkout of theeslint
repo to ensure that tests were passing fine there.Fixes #2204