From c2f9b23335743e04d04958247cb6c3e8670f5fc7 Mon Sep 17 00:00:00 2001 From: Dave Shoup Date: Tue, 26 Aug 2025 22:58:39 -0400 Subject: [PATCH] enable `no-explicit-any` rule --- eslint.config.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index c52b4e2fcc..d7868d276b 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -36,8 +36,7 @@ export default [ "no-redeclare": "off", // "require-await": "warn", "@typescript-eslint/no-unused-vars": "error", - // Some untyped things may require extra effort to be fixed - "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-explicit-any": "error", // replacement of ESLint's no-redeclare with support for function overload "@typescript-eslint/no-redeclare": "error", // ignore line endings between Windows and Unix