0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-26 23:54:23 +01:00

ESLint: properly disable no-negated-condition

This commit is contained in:
XhmikosR 2024-03-11 16:23:20 +02:00
parent 76bbd3fdee
commit 7df3fb5970

View 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",