@saasmakers/eslint 0.1.44 → 0.1.46
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 +10 -2
- package/dist/eslint.config.mjs +10 -2
- package/package.json +1 -1
package/dist/eslint.config.cjs
CHANGED
|
@@ -22487,7 +22487,14 @@ const config = [
|
|
|
22487
22487
|
parserOptions: {
|
|
22488
22488
|
extraFileExtensions: [".vue"],
|
|
22489
22489
|
parser: tseslint__default.parser,
|
|
22490
|
-
projectService:
|
|
22490
|
+
projectService: {
|
|
22491
|
+
allowDefaultProject: [
|
|
22492
|
+
"**/*.config.ts",
|
|
22493
|
+
"**/*.spec.ts",
|
|
22494
|
+
"**/*.test.ts",
|
|
22495
|
+
"**/tests/**/*.ts"
|
|
22496
|
+
]
|
|
22497
|
+
},
|
|
22491
22498
|
tsconfigRootDir: undefined
|
|
22492
22499
|
}
|
|
22493
22500
|
},
|
|
@@ -22637,7 +22644,8 @@ const config = [
|
|
|
22637
22644
|
"sonarjs/cognitive-complexity": "off",
|
|
22638
22645
|
"sonarjs/no-empty-test-file": "off",
|
|
22639
22646
|
"sonarjs/no-hardcoded-passwords": "off",
|
|
22640
|
-
"sonarjs/no-nested-conditional": "off"
|
|
22647
|
+
"sonarjs/no-nested-conditional": "off",
|
|
22648
|
+
"sonarjs/pseudo-random": "off"
|
|
22641
22649
|
}
|
|
22642
22650
|
},
|
|
22643
22651
|
// Unicorn
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -22452,7 +22452,14 @@ const config = [
|
|
|
22452
22452
|
parserOptions: {
|
|
22453
22453
|
extraFileExtensions: [".vue"],
|
|
22454
22454
|
parser: tseslint.parser,
|
|
22455
|
-
projectService:
|
|
22455
|
+
projectService: {
|
|
22456
|
+
allowDefaultProject: [
|
|
22457
|
+
"**/*.config.ts",
|
|
22458
|
+
"**/*.spec.ts",
|
|
22459
|
+
"**/*.test.ts",
|
|
22460
|
+
"**/tests/**/*.ts"
|
|
22461
|
+
]
|
|
22462
|
+
},
|
|
22456
22463
|
tsconfigRootDir: import.meta.dirname
|
|
22457
22464
|
}
|
|
22458
22465
|
},
|
|
@@ -22602,7 +22609,8 @@ const config = [
|
|
|
22602
22609
|
"sonarjs/cognitive-complexity": "off",
|
|
22603
22610
|
"sonarjs/no-empty-test-file": "off",
|
|
22604
22611
|
"sonarjs/no-hardcoded-passwords": "off",
|
|
22605
|
-
"sonarjs/no-nested-conditional": "off"
|
|
22612
|
+
"sonarjs/no-nested-conditional": "off",
|
|
22613
|
+
"sonarjs/pseudo-random": "off"
|
|
22606
22614
|
}
|
|
22607
22615
|
},
|
|
22608
22616
|
// Unicorn
|