Skip to content

Commit a7789ef

Browse files
committed
chore: remove dead code that was the source of quite a few lint errors
1 parent 3759cde commit a7789ef

File tree

7 files changed

+12
-3118
lines changed

7 files changed

+12
-3118
lines changed

eslint.config.mjs

+12-12
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,19 @@ export default tseslint.config(
6464
// the following rules are being heavily violated in the current codebase,
6565
// we should work on being able to enable them...
6666
rules: {
67-
'@typescript-eslint/no-unsafe-member-access': 'off', // 742 instances
68-
'@typescript-eslint/no-unsafe-call': 'off', // 432 instances
69-
'@typescript-eslint/no-unsafe-assignment': 'off', // 429 instances
70-
'@typescript-eslint/no-unsafe-argument': 'off', // 401 instances
71-
'@typescript-eslint/no-explicit-any': 'off', // 226 instances
72-
'@typescript-eslint/no-unused-vars': 'off', // 204 instances
73-
'@typescript-eslint/no-unsafe-return': 'off', // 83 instances
74-
'@typescript-eslint/no-misused-promises': 'off', // 57 instances
75-
'@typescript-eslint/no-floating-promises': 'off', // 55 instances
67+
'@typescript-eslint/no-unsafe-member-access': 'off', // 655 instances
68+
'@typescript-eslint/no-unsafe-call': 'off', // 381 instances
69+
'@typescript-eslint/no-unsafe-assignment': 'off', // 354 instances
70+
'@typescript-eslint/no-unsafe-argument': 'off', // 309 instances
71+
'@typescript-eslint/no-explicit-any': 'off', // 187 instances
72+
'@typescript-eslint/no-unused-vars': 'off', // 169 instances
73+
'@typescript-eslint/no-unsafe-return': 'off', // 74 instances
74+
'@typescript-eslint/no-misused-promises': 'off', // 53 instances
75+
'@typescript-eslint/no-floating-promises': 'off', // 48 instances
7676
'no-useless-escape': 'off', // 38 instances
77-
'@typescript-eslint/prefer-promise-reject-errors': 'off', // 36 instances
78-
'no-async-promise-executor': 'off', // 29 instances
79-
'@typescript-eslint/require-await': 'off', // 11 instances
77+
'no-async-promise-executor': 'off', // 25 instances
78+
'@typescript-eslint/prefer-promise-reject-errors': 'off', // 19 instances
79+
'@typescript-eslint/require-await': 'off', // 7 instances
8080
}
8181
},
8282
{

0 commit comments

Comments
 (0)