From dcd9b1b6910f397c9064b4b87455869fc0518c7e Mon Sep 17 00:00:00 2001 From: Jaco Date: Sun, 2 Jan 2022 18:11:06 +0100 Subject: [PATCH] Remove lint rule overrides (#583) * Remove lint rule overrides * Swap to base rules --- .eslintrc.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 6313d656..d7dc3153 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -14,14 +14,5 @@ module.exports = { project: [ './tsconfig.eslint.json' ] - }, - rules: { - ...base.rules, - // add override for any (a metric ton of them, initial conversion) - '@typescript-eslint/no-explicit-any': 'off', - // these should be removed, there are 8 of them as errors - '@typescript-eslint/no-non-null-assertion': 'off', - // this seems very broken atm, false positives - '@typescript-eslint/unbound-method': 'off' } };