From 749062bed65a0f740988399ae591d259c71fdc3b Mon Sep 17 00:00:00 2001 From: Wolfgang Müller Date: Mon, 27 Jan 2025 17:47:42 +0100 Subject: frontend/lint: Fix miscellaneous lint issues --- frontend/src/lib/Filter.ts | 4 +--- frontend/src/lib/Navigation.ts | 2 +- frontend/src/lib/Shortcuts.ts | 2 +- frontend/src/lib/Update.ts | 4 +--- 4 files changed, 4 insertions(+), 8 deletions(-) (limited to 'frontend/src/lib') diff --git a/frontend/src/lib/Filter.ts b/frontend/src/lib/Filter.ts index 8e419f3..1340eaf 100644 --- a/frontend/src/lib/Filter.ts +++ b/frontend/src/lib/Filter.ts @@ -25,9 +25,7 @@ type FilterMode = 'any' | 'all' | 'exact'; type Key = string | number | symbol; -type Filter = { - [Property in K]?: T | null; -}; +type Filter = Partial>; type AssocFilter = Filter< { diff --git a/frontend/src/lib/Navigation.ts b/frontend/src/lib/Navigation.ts index e6b17cd..5ed3ec5 100644 --- a/frontend/src/lib/Navigation.ts +++ b/frontend/src/lib/Navigation.ts @@ -41,7 +41,7 @@ export function parseFilter(params: URLSearchParams): T { try { return JsonURL.parse(param, { AQF: true, impliedObject: {} }) as T; - } catch (e) { + } catch { return {} as T; } } diff --git a/frontend/src/lib/Shortcuts.ts b/frontend/src/lib/Shortcuts.ts index 063bd40..300ddcb 100644 --- a/frontend/src/lib/Shortcuts.ts +++ b/frontend/src/lib/Shortcuts.ts @@ -37,7 +37,7 @@ type ModeSwitch = (typeof modeSwitches)[number]; function isModeSwitch(s: string): s is ModeSwitch { // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument - return modeSwitches.indexOf(s as any) !== -1; + return modeSwitches.includes(s as any); } type Key = Letter | Special; diff --git a/frontend/src/lib/Update.ts b/frontend/src/lib/Update.ts index 507dd52..13aec61 100644 --- a/frontend/src/lib/Update.ts +++ b/frontend/src/lib/Update.ts @@ -12,9 +12,7 @@ interface AssociationUpdate { options?: UpdateOptions | null; } -type Input = { - [Property in K]?: T | null; -}; +type Input = Partial>; abstract class Entry { key: K; -- cgit v1.2.3-2-gb3c3