From 19342398abb704d8ec1ff09de7ab3e3a9a66e281 Mon Sep 17 00:00:00 2001 From: OliverSieweke Date: Mon, 23 Sep 2019 09:33:58 +0200 Subject: [PATCH] chore(eslint-plugin): eslint-recommended: disable no-obj-calls (#999) --- 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 39e8379b56b0..87a452fe94e2 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`.