From 304198b42396dc5566e32637b340dbbf0bca69be Mon Sep 17 00:00:00 2001 From: Kenneth Sills <132029135+Kenneth-Sills@users.noreply.github.com> Date: Mon, 5 Aug 2024 20:31:25 +0000 Subject: [PATCH] chore: remove redundant rule overrides Closes #281. --- lib/shared.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/shared.js b/lib/shared.js index 306550be..420d3ae1 100644 --- a/lib/shared.js +++ b/lib/shared.js @@ -111,11 +111,6 @@ module.exports = { 'no-array-constructor': 'off', '@typescript-eslint/no-array-constructor': baseStyleRules['no-array-constructor'], - // Replace Airbnb 'no-dupe-class-members' rule with '@typescript-eslint' version - // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-dupe-class-members.md - 'no-dupe-class-members': 'off', - '@typescript-eslint/no-dupe-class-members': baseES6Rules['no-dupe-class-members'], - // Replace Airbnb 'no-empty-function' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-empty-function.md 'no-empty-function': 'off', @@ -152,11 +147,6 @@ module.exports = { 'no-magic-numbers': 'off', '@typescript-eslint/no-magic-numbers': baseBestPracticesRules['no-magic-numbers'], - // Replace Airbnb 'no-redeclare' rule with '@typescript-eslint' version - // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-redeclare.md - 'no-redeclare': 'off', - '@typescript-eslint/no-redeclare': baseBestPracticesRules['no-redeclare'], - // Replace Airbnb 'no-shadow' rule with '@typescript-eslint' version // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-shadow.md 'no-shadow': 'off',