@saasmakers/eslint 0.1.40 → 0.1.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eslint.config.cjs +3 -1
- package/dist/eslint.config.mjs +3 -1
- package/package.json +1 -1
package/dist/eslint.config.cjs
CHANGED
|
@@ -22635,8 +22635,10 @@ const config = [
|
|
|
22635
22635
|
sonarjs__default.configs.recommended,
|
|
22636
22636
|
{
|
|
22637
22637
|
rules: {
|
|
22638
|
+
"sonarjs/cognitive-complexity": "off",
|
|
22638
22639
|
"sonarjs/no-empty-test-file": "off",
|
|
22639
|
-
"sonarjs/no-hardcoded-passwords": "off"
|
|
22640
|
+
"sonarjs/no-hardcoded-passwords": "off",
|
|
22641
|
+
"sonarjs/no-nested-conditional": "off"
|
|
22640
22642
|
}
|
|
22641
22643
|
},
|
|
22642
22644
|
// Unicorn
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -22600,8 +22600,10 @@ const config = [
|
|
|
22600
22600
|
sonarjs.configs.recommended,
|
|
22601
22601
|
{
|
|
22602
22602
|
rules: {
|
|
22603
|
+
"sonarjs/cognitive-complexity": "off",
|
|
22603
22604
|
"sonarjs/no-empty-test-file": "off",
|
|
22604
|
-
"sonarjs/no-hardcoded-passwords": "off"
|
|
22605
|
+
"sonarjs/no-hardcoded-passwords": "off",
|
|
22606
|
+
"sonarjs/no-nested-conditional": "off"
|
|
22605
22607
|
}
|
|
22606
22608
|
},
|
|
22607
22609
|
// Unicorn
|