Skip to content

Commit

Permalink
fix(eslint-plugin): Remove no-dupe-class-members from eslint-recomm…
Browse files Browse the repository at this point in the history
…ended (#520)

It was accidentally enabled.
  • Loading branch information
ThomasdenH authored and bradzacher committed May 13, 2019
1 parent 5ec2b32 commit 1a0e60b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/eslint-plugin/src/configs/eslint-recommended.ts
Expand Up @@ -32,6 +32,8 @@ export default {
'no-this-before-super': 'off',
// This is checked by Typescript using the option `strictNullChecks`.
'no-undef': 'off',
// This is already checked by Typescript.
'no-dupe-class-members': 'off',
/**
* 2. Enable more ideomatic code
*/
Expand All @@ -41,8 +43,6 @@ export default {
// The spread operator/rest parameters should be prefered in Typescript.
'prefer-rest-params': 'error',
'prefer-spread': 'error',
// This is already checked by Typescript.
'no-dupe-class-members': 'error',
},
},
],
Expand Down

0 comments on commit 1a0e60b

Please sign in to comment.