From 3e9ccb2849d4de112232abe76026a6c9baa35bb5 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Tue, 2 Dec 2025 15:06:27 -0500 Subject: [PATCH] test: enable two lint rules that are now passing Removed "off" directives for "@typescript-eslint/ban-types" and "@typescript-eslint/no-var-requires" as there are no longer any failures associated with these rules. --- eslint.config.mjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 318b5dec3bee..192ba19f2007 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -190,9 +190,7 @@ export default [ ], '@typescript-eslint/await-thenable': 'off', - '@typescript-eslint/ban-types': 'off', '@typescript-eslint/no-implied-eval': 'off', - '@typescript-eslint/no-var-requires': 'off', '@typescript-eslint/no-unsafe-argument': 'off', '@typescript-eslint/no-unsafe-assignment': 'off', '@typescript-eslint/no-unsafe-call': 'off',