-
-
Notifications
You must be signed in to change notification settings - Fork 468
chore: upgrade eslint from v8 to v9 #646
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
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #646 +/- ##
==========================================
+ Coverage 90.14% 94.93% +4.78%
==========================================
Files 15 15
Lines 335 296 -39
Branches 176 149 -27
==========================================
- Hits 302 281 -21
+ Misses 27 15 -12
+ Partials 6 0 -6 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
src/runtime/isOldIE.js
Outdated
typeof document !== "undefined" && | ||
document.all && | ||
!window.atob, | ||
!globalThis.atob, |
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.
Don't use globalThis
in runtime code
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.
Let's fix a problem with globalThis
src/runtime/isOldIE.js
Outdated
// @see https://github.com/webpack-contrib/style-loader/issues/177 | ||
memo = Boolean( | ||
typeof window !== "undefined" && | ||
typeof window.window !== "undefined" && |
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.
Remove this line
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.
Let's fix line above
This PR contains a:
Motivation / Use-Case
upgrade eslint from v8 to v9
Breaking Changes
No
Additional Info
No