Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feat(eslint-plugin): eslint-recommended: disable no-obj-calls (#1000)
BREAKING CHANGE
  • Loading branch information
OliverSieweke authored and bradzacher committed May 21, 2020
1 parent 06bec63 commit b9ca14c
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 @@ -21,6 +21,8 @@ export default {
'no-const-assign': 'off',
// Checked by Typescript - ts(2588)
'no-new-symbol': 'off',
// Checked by Typescript - ts(2349)
'no-obj-calls': 'off',
// Checked by Typescript - ts(2376)
'no-this-before-super': 'off',
// This is checked by Typescript using the option `strictNullChecks`.
Expand Down

0 comments on commit b9ca14c

Please sign in to comment.