From 2a69c0baf9f11f5de698eaa08c01601d73ff4db5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCrg=C3=BCn=20Day=C4=B1o=C4=9Flu?= Date: Tue, 8 Oct 2024 14:39:48 +0200 Subject: [PATCH] no-constructor-return: off --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 8ffe5a3..8f75e56 100644 --- a/src/index.js +++ b/src/index.js @@ -62,7 +62,6 @@ export default [ eqeqeq: ["error", "always", { null: "ignore" }], "func-names": ["error", "never"], "no-caller": "error", - "no-constructor-return": "error", "no-duplicate-imports": "error", "no-empty-static-block": "error", "no-eval": "error", @@ -125,6 +124,7 @@ export default [ "no-await-in-loop": "warn", "no-bitwise": "warn", "no-console": "off", + "no-constructor-return": "off", "no-continue": "off", "no-div-regex": "off", "no-else-return": ["error", { allowElseIf: false }],