chore: eslint 10 (#26490)

This commit is contained in:
Daniel Dietzler
2026-02-24 14:24:18 +01:00
committed by GitHub
parent 30f6d4439e
commit 55ee9f76da
22 changed files with 195 additions and 179 deletions
@@ -1004,7 +1004,7 @@ class TransformManager implements EditToolManager {
];
}
let cursorName = '';
let cursorName: string;
if (onTopLeftCorner || onBottomRightCorner) {
cursorName = 'nwse-resize';
} else if (onTopRightCorner || onBottomLeftCorner) {
@@ -122,6 +122,7 @@ export async function retrieveRange(timelineManager: TimelineManager, start: Ass
const assetOrder: AssetOrder = timelineManager.getAssetOrder();
if (plainDateTimeCompare(assetOrder === AssetOrder.Desc, startAsset.localDateTime, endAsset.localDateTime) < 0) {
[startAsset, endAsset] = [endAsset, startAsset];
// eslint-disable-next-line no-useless-assignment
[startMonthGroup, endMonthGroup] = [endMonthGroup, startMonthGroup];
}