diff --git a/packages/eslint-plugin/src/configs/eslint-recommended.ts b/packages/eslint-plugin/src/configs/eslint-recommended.ts index 6e65cdc2f6c..263180cbf3b 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(2349)