-
Notifications
You must be signed in to change notification settings - Fork 27
chore(lint): migrate to flat ESLint config with neostandard #393
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
|
No linked issues found. Please add the corresponding issues in the pull request description. |
| @@ -1,14 +1,13 @@ | |||
| 'use strict' | |||
|
|
|||
| // eslint-disable-next-line n/no-unsupported-features/node-builtins | |||
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.
test/test.js
Outdated
| @@ -1007,15 +1005,18 @@ describe('General error handling', function () { | |||
| }) | |||
|
|
|||
| describe('Cleanup', function () { | |||
| test('should close the cache when the server stops', function (t, done) { | |||
| test('should close the cache when the server stops', async function (t, done) { | |||
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.
I'm not so sure about mixing the async and done callback.
Maybe we should return a plain promise with reject/resolve?
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.
@ilteoood done.
Let's wait for the other PR before checking this one. The tests are broken.
75c4011 to
530c1bb
Compare
This PR upgrades ESLint from v8 to v9 and aligns the other dependencies based on this new version.
Wait #389 or #391 before merging