From 7df3fb59707ac91e6d8e0e872e68fd956889abee Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 11 Mar 2024 16:23:20 +0200 Subject: [PATCH] ESLint: properly disable `no-negated-condition` --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 8908fc91c4..4ded4b402e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -67,7 +67,6 @@ } ], "no-console": "error", - "no-negated-condition": "off", "object-curly-spacing": [ "error", "always" @@ -87,6 +86,7 @@ "unicorn/filename-case": "off", "unicorn/no-array-callback-reference": "off", "unicorn/no-array-method-this-argument": "off", + "unicorn/no-negated-condition": "off", "unicorn/no-null": "off", "unicorn/no-typeof-undefined": "off", "unicorn/no-unused-properties": "error",