]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
ESLint: properly disable `no-negated-condition`
authorXhmikosR <xhmikosr@gmail.com>
Mon, 11 Mar 2024 14:23:20 +0000 (16:23 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Mon, 11 Mar 2024 14:37:24 +0000 (16:37 +0200)
.eslintrc.json

index 8908fc91c410df4e05181085b812d4595b1589ba..4ded4b402e73d505aa17e0db50aef2e014a3b23d 100644 (file)
@@ -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",