Commit 0750d20
committed
Fix two lint errors introduced by biome 2.4.10 → 2.4.11 upgrade
biome 2.4.11 (bumped via Dependabot in 5eaae30) promoted two rules
in its recommended ruleset:
1. lint/suspicious/noConfusingVoidType (warning → error):
`Promise<void[]>` is now an error in generic position. Fixed by
returning `undefined` explicitly from the async lambda so
`Promise.all` resolves to `Promise<undefined[]>`.
2. assist/source/organizeImports (implicit):
Import order in definitionServiceTest.ts was out of alphabetical
order after adding memoryQueueConfig and recomputeHandler imports
during the recompute refactor. Fixed by running `biome check --write`.1 parent 9b2c3fd commit 0750d20
2 files changed
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
470 | 470 | | |
471 | 471 | | |
472 | 472 | | |
473 | | - | |
| 473 | + | |
474 | 474 | | |
475 | 475 | | |
476 | 476 | | |
477 | 477 | | |
478 | 478 | | |
479 | 479 | | |
| 480 | + | |
480 | 481 | | |
481 | 482 | | |
482 | 483 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
15 | 14 | | |
16 | 15 | | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
0 commit comments