Skip to content

Commit 1a0e60b

Browse files
ThomasdenHbradzacher
authored andcommitted
fix(eslint-plugin): Remove no-dupe-class-members from eslint-recommended (#520)
It was accidentally enabled.
1 parent 5ec2b32 commit 1a0e60b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/eslint-plugin/src/configs/eslint-recommended.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ export default {
3232
'no-this-before-super': 'off',
3333
// This is checked by Typescript using the option `strictNullChecks`.
3434
'no-undef': 'off',
35+
// This is already checked by Typescript.
36+
'no-dupe-class-members': 'off',
3537
/**
3638
* 2. Enable more ideomatic code
3739
*/
@@ -41,8 +43,6 @@ export default {
4143
// The spread operator/rest parameters should be prefered in Typescript.
4244
'prefer-rest-params': 'error',
4345
'prefer-spread': 'error',
44-
// This is already checked by Typescript.
45-
'no-dupe-class-members': 'error',
4646
},
4747
},
4848
],

0 commit comments

Comments
 (0)