From e72bc1d1ff78140b749287c7bda673628a0c1edd Mon Sep 17 00:00:00 2001 From: Sosuke Suzuki Date: Sat, 1 Oct 2022 03:37:27 +0900 Subject: [PATCH] fix: set `recommended: false` --- lib/rules/no-new-nonconstructor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/no-new-nonconstructor.js b/lib/rules/no-new-nonconstructor.js index 4889f191009f..5215d45fc0f9 100644 --- a/lib/rules/no-new-nonconstructor.js +++ b/lib/rules/no-new-nonconstructor.js @@ -22,7 +22,7 @@ module.exports = { docs: { description: "Disallow `new` operators with global no constructor functions", - recommended: true, + recommended: false, url: "https://eslint.org/docs/rules/no-new-nonconstructor" },