Skip to content

Commit

Permalink
feat(eslint-plugin): eslint-recommended: disable no-func-assign (#984)
Browse files Browse the repository at this point in the history
BREAKING CHANGE
  • Loading branch information
OliverSieweke authored and bradzacher committed May 21, 2020
1 parent b9ca14c commit ae9b8a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/eslint-plugin/src/configs/eslint-recommended.ts
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(2349)
Expand Down

0 comments on commit ae9b8a9

Please sign in to comment.