From 20213ab2ab3d4a5b1f6a025885f31c4f3ae554c6 Mon Sep 17 00:00:00 2001 From: OliverSieweke Date: Wed, 18 Sep 2019 00:25:10 +0200 Subject: [PATCH] fix(eslint-plugin): [no-func-assign] disable rule handled by TS (#983) --- 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 39e8379b56b..25cdd879402 100644 --- a/packages/eslint-plugin/src/configs/eslint-recommended.ts +++ b/packages/eslint-plugin/src/configs/eslint-recommended.ts @@ -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(2376)