-
Notifications
You must be signed in to change notification settings - Fork 278
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
chore: update ESLint, migrate configuration file #2574
base: master
Are you sure you want to change the base?
Conversation
Size Change: -475 B (-0.04%) Total Size: 1.17 MB
ℹ️ View Unchanged
|
0fb487d
to
4505339
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2574 +/- ##
==========================================
+ Coverage 82.95% 82.97% +0.02%
==========================================
Files 444 444
Lines 9222 9234 +12
Branches 2254 2251 -3
==========================================
+ Hits 7650 7662 +12
- Misses 1239 1240 +1
+ Partials 333 332 -1 ☔ View full report in Codecov by Sentry. |
7e4ce05
to
e0dfe4d
Compare
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.
Awesome stuff! Thanks for taking care of this long overdue upgrade!
@@ -27,7 +27,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
node: [16, 18] | |||
node: [18, 20] |
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.
Do we have a good reason to run tests with two different node versions? If not, I think we can directly go to v22 (latest LTS).
"eslint": "7.14.0", | ||
"eslint-config-airbnb": "^18.2.1", | ||
"eslint-config-prettier": "^6.15.0", | ||
"eslint-config-react-app": "^6.0.0", | ||
"eslint-import-resolver-alias": "^1.1.2", | ||
"eslint-import-resolver-babel-module": "^5.2.0", | ||
"eslint-plugin-babel": "^5.3.1", | ||
"eslint-plugin-flowtype": "^5.2.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-jest": "^24.1.3", | ||
"eslint-plugin-jest-dom": "^3.3.0", | ||
"eslint-plugin-jsx-a11y": "^6.4.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-react": "^7.21.5", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"eslint-plugin-sort-destructure-keys": "1.3.5", | ||
"eslint-plugin-sort-keys-fix": "^1.1.2", | ||
"eslint-plugin-testing-library": "^6.2.0", | ||
"eslint-plugin-typescript-sort-keys": "^2.1.0", |
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.
🤯 🥳
🎯 Goal
Time to UPGRADE and migrate. :)
PR is divided into two commits, ESLint changes and Prettier changes - we can drop Prettier changes for
master
merges (so that I don't have to deal with merge conflicts) and merge this PR once our PR backlog is somewhat empty.