From e52f5f4f95465cdc7d7b691d57287b018ee987f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Mon, 5 Dec 2022 05:24:54 +0100 Subject: [PATCH] fix no-new-func manually --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 9bf7850784..5ebb7fae38 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -116,7 +116,7 @@ module.exports = { radix: 'off', 'prefer-spread': 'off', 'no-multi-assign': 'off', - 'no-new-func': 'off', + 'no-new-func': 'off', // fixed with separate PR https://github.com/fomantic/Fomantic-UI/pull/2587 'no-bitwise': 'off', 'array-callback-return': 'off', 'no-prototype-builtins': 'off',