From 89ba05f462744f2bfe677bdd74b002808816103b Mon Sep 17 00:00:00 2001 From: nathan Date: Sun, 2 Aug 2026 20:49:34 -0400 Subject: [PATCH] removed warning for 'any' as a type from eslint --- eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 4bb64a5ee..c12af32ad 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -109,7 +109,7 @@ export default [ { argsIgnorePattern: '^_', varsIgnorePattern: '^_', caughtErrorsIgnorePattern: '^_' }, ], '@typescript-eslint/no-shadow': 'error', - '@typescript-eslint/no-explicit-any': 'warn', + '@typescript-eslint/no-explicit-any': 'off', // jsx-a11y — media captions not required for this app 'jsx-a11y/media-has-caption': 'off',