From a447dc28203a764fbc2405d8c71fe55dbe518e82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Mon, 7 Aug 2023 16:14:49 +0200 Subject: [PATCH] linting: ignoring no-explicit-any --- frontend/src/utils/nestedObjectUtils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/utils/nestedObjectUtils.ts b/frontend/src/utils/nestedObjectUtils.ts index 797ece2..78588e9 100644 --- a/frontend/src/utils/nestedObjectUtils.ts +++ b/frontend/src/utils/nestedObjectUtils.ts @@ -1,4 +1,5 @@ type Data = { + // eslint-disable-next-line @typescript-eslint/no-explicit-any [key: string]: any; };