From 8a7a8bf1799893011f46c7521141be4df5f87a73 Mon Sep 17 00:00:00 2001 From: Thatsaphorn Atchariyaphap Date: Mon, 28 Apr 2025 08:35:14 +0200 Subject: [PATCH] Enable use of 'any' in TypeScript ESLint configuration --- frontend/eslint.config.mjs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/eslint.config.mjs b/frontend/eslint.config.mjs index 032b486..07deb2e 100644 --- a/frontend/eslint.config.mjs +++ b/frontend/eslint.config.mjs @@ -18,8 +18,9 @@ const eslintConfig = [ { argsIgnorePattern: '^_', varsIgnorePattern: '^_' - } - ] + }, + ], + '@typescript-eslint/no-explicit-any': 'off' } }) ];