Update dependency "eslint" to v9.x

v9.39.4
This commit is contained in:
schroda
2026-03-10 10:59:38 +01:00
parent d8673e2307
commit 22e1b6d224
29 changed files with 877 additions and 738 deletions

View File

@@ -168,16 +168,16 @@ const VerticalGrid = ({
}
/>
</Box>
{/* render div to prevent UI jumping around when showing/hiding loading placeholder */
/* eslint-disable-next-line no-nested-ternary */}
{/* render div to prevent UI jumping around when showing/hiding loading placeholder */}
{/* eslint-disable no-nested-ternary */}
{isSelectModeActive && gridLayout === GridLayout.List ? (
<Box sx={{ paddingBottom: DEFAULT_FULL_FAB_HEIGHT }} />
) : // eslint-disable-next-line no-nested-ternary
isLoading ? (
) : isLoading ? (
<LoadingPlaceholder />
) : hasNextPage ? (
<div style={{ height: '75px' }} />
) : null}
{/* eslint-enable no-nested-ternary */}
</>
);

View File

@@ -548,6 +548,7 @@ export class Mangas {
for (const migrationAction of migrationActions) {
// the migration actions (copy, cleanup) are supposed to be run sequentially to ensure that the cleanup
// only happens in case the copy succeeded
// eslint-disable-next-line no-await-in-loop
await performMigrationAction(migrationAction, ...actions);
}