Skip to content

Commit

Permalink
Count remaining problems
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Apr 4, 2024
1 parent 54f56b4 commit e44248a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
// 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',
{
argsIgnorePattern: '^_', // Ignore argument variables starting with _
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 = {
Expand Down

0 comments on commit e44248a

Please sign in to comment.