-
Notifications
You must be signed in to change notification settings - Fork 146
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
feat(deps): update to @typescript-eslint/*
v8
#955
Conversation
@@ -214,6 +212,7 @@ export function detectTestingLibraryUtils< | |||
|
|||
const originalNodeName = | |||
isImportSpecifier(importedUtilSpecifier) && | |||
ASTUtils.isIdentifier(importedUtilSpecifier.imported) && |
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.
Extra check is needed because of changes from typescript-eslint/typescript-eslint#9972: imported
can now be Identifier | StringLiteral
, which was only Identifier
before
83c107e
to
fd32bc5
Compare
I should be able to review this next week. Thanks. |
fd32bc5
to
b7d0890
Compare
@Belco90 anything you still want me to do before this can be merged or is it good to go? |
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.
Wow, amazing work. Thanks @MichaelDeBoey!
🎉 This PR is included in version 7.0.0-beta.6 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Last part of migration to latest
typescript-eslint
versionCC/ @G-Rath @JoshuaKGoldberg
Closes #948