Skip to content

Commit

Permalink
fix(eslint-plugin): [no-func-assign] disable rule handled by TS (type…
Browse files Browse the repository at this point in the history
  • Loading branch information
OliverSieweke committed Sep 17, 2019
1 parent c3c8b86 commit 20213ab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/eslint-plugin/src/configs/eslint-recommended.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export default {
'valid-typeof': 'off',
// Checked by Typescript - ts(2588)
'no-const-assign': 'off',
// Checked by Typescript - ts(2539)
'no-func-assign': 'off',
// Checked by Typescript - ts(2588)
'no-new-symbol': 'off',
// Checked by Typescript - ts(2376)
Expand Down

0 comments on commit 20213ab

Please sign in to comment.