From b9ca14c5f5ec28a3fde1a9b2d2f6a4dc74d903e4 Mon Sep 17 00:00:00 2001 From: Oliver Sieweke Date: Sun, 10 May 2020 00:02:11 +0200 Subject: [PATCH] feat(eslint-plugin): eslint-recommended: disable no-obj-calls (#1000) BREAKING CHANGE --- packages/eslint-plugin/src/configs/eslint-recommended.ts | 2 ++ 1 file changed, 2 insertions(+) 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`.