Skip to content

Commit 4fd9373

Browse files
committed
Remove duplicate disabling of rules for TypeScript
1 parent 89313e2 commit 4fd9373

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/typescript.rules.test.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3028,12 +3028,10 @@ describe('semver for TypeScript rules - should those tests break, consider relea
30283028
"import/no-unresolved": "off",
30293029
"no-const-assign": "off",
30303030
"no-dupe-args": "off",
3031-
"no-dupe-class-members": "off",
30323031
"no-dupe-keys": "off",
30333032
"no-func-assign": "off",
30343033
"no-new-symbol": "off",
30353034
"no-obj-calls": "off",
3036-
"no-redeclare": "off",
30373035
"no-this-before-super": "off",
30383036
"no-undef": "off",
30393037
"no-unreachable": "off",

typescript.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,14 @@ module.exports = {
310310
'getter-return': 'off',
311311
'no-const-assign': 'off',
312312
'no-dupe-args': 'off',
313-
'no-dupe-class-members': 'off',
313+
// Already disabled for all files.
314+
// 'no-dupe-class-members': 'off',
314315
'no-dupe-keys': 'off',
315316
'no-func-assign': 'off',
316317
'no-new-symbol': 'off',
317318
'no-obj-calls': 'off',
318-
'no-redeclare': 'off',
319+
// Already disabled for all files.
320+
// 'no-redeclare': 'off',
319321
'no-this-before-super': 'off',
320322
'no-undef': 'off',
321323
'no-unreachable': 'off',

0 commit comments

Comments
 (0)