From e44248a10f1c985213123106e3de634e116355a0 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Thu, 4 Apr 2024 13:32:18 -0600 Subject: [PATCH] Count remaining problems --- .eslintrc.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index d5ad92f2a3..6403e92087 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,8 +1,8 @@ // TODO: These rules should be enabled, but we had offenses when we enabled ESLint. // This is tech-debt. We should go through and re-enable these at some point. const temporarilyDisabledRules = { - '@typescript-eslint/ban-ts-comment': 'off', - '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/ban-ts-comment': 'off', // 42 problems + '@typescript-eslint/no-explicit-any': 'off', // 537 problems '@typescript-eslint/no-unused-vars': [ 'off', { @@ -10,10 +10,10 @@ const temporarilyDisabledRules = { varsIgnorePattern: '^_' // Ignore local variables starting with _ } ], // 26 problems - '@typescript-eslint/no-var-requires': 'off', - 'no-constant-condition': 'off', - 'no-undef': 'off', - 'prefer-const': 'off' + '@typescript-eslint/no-var-requires': 'off', // 14 problems + 'no-constant-condition': 'off', // 1 problem + 'no-undef': 'off', // 79 problems + 'prefer-const': 'off' // 154 problems }; module.exports = {