diff --git a/packages/eslint-plugin/src/configs/eslint-recommended.ts b/packages/eslint-plugin/src/configs/eslint-recommended.ts index 696cd612d2d..6e65cdc2f6c 100644 --- a/packages/eslint-plugin/src/configs/eslint-recommended.ts +++ b/packages/eslint-plugin/src/configs/eslint-recommended.ts @@ -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`.