@icebreakers/eslint-config 1.6.27 → 1.6.28
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/index.cjs +3 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -412,6 +412,9 @@ var BASE_RULES = {
|
|
|
412
412
|
"dot-notation": "off",
|
|
413
413
|
// Keep dependency bans visible without blocking CI on upstream preset defaults.
|
|
414
414
|
"e18e/ban-dependencies": "warn",
|
|
415
|
+
// Disable until upstream fixes false positives on non-array iterables (Set, Map).
|
|
416
|
+
// See: [...new Set(arr)].sort() → new Set(arr).toSorted() is invalid.
|
|
417
|
+
"e18e/prefer-array-to-sorted": "off",
|
|
415
418
|
// Disable all pnpm rules by default
|
|
416
419
|
// @antfu/eslint-config auto-enables pnpm plugin when pnpm-workspace.yaml exists
|
|
417
420
|
// but we want it opt-in instead of auto-enabled
|
package/dist/index.js
CHANGED
|
@@ -384,6 +384,9 @@ var BASE_RULES = {
|
|
|
384
384
|
"dot-notation": "off",
|
|
385
385
|
// Keep dependency bans visible without blocking CI on upstream preset defaults.
|
|
386
386
|
"e18e/ban-dependencies": "warn",
|
|
387
|
+
// Disable until upstream fixes false positives on non-array iterables (Set, Map).
|
|
388
|
+
// See: [...new Set(arr)].sort() → new Set(arr).toSorted() is invalid.
|
|
389
|
+
"e18e/prefer-array-to-sorted": "off",
|
|
387
390
|
// Disable all pnpm rules by default
|
|
388
391
|
// @antfu/eslint-config auto-enables pnpm plugin when pnpm-workspace.yaml exists
|
|
389
392
|
// but we want it opt-in instead of auto-enabled
|
package/package.json
CHANGED