@peerigon/configs 14.5.0 → 14.6.0
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/CHANGELOG.md +6 -0
- package/dist/eslint/rules/javascript.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# [14.6.0](https://github.com/peerigon/configs/compare/v14.5.0...v14.6.0) (2026-03-15)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **eslint:** Disable no-unreachable-loop in tests ([4638cb2](https://github.com/peerigon/configs/commit/4638cb20ca44cd2455319138141b51ef08299e55))
|
|
6
|
+
|
|
1
7
|
# [14.5.0](https://github.com/peerigon/configs/compare/v14.4.0...v14.5.0) (2026-03-10)
|
|
2
8
|
|
|
3
9
|
### Features
|
|
@@ -151,6 +151,8 @@ export const javascript = [
|
|
|
151
151
|
"max-nested-callbacks": "off",
|
|
152
152
|
// await in loops is pretty common in Playwright tests
|
|
153
153
|
"no-await-in-loop": "off",
|
|
154
|
+
// Unreachable loops are sometimes used in tests to assert loop body runs at most once
|
|
155
|
+
"no-unreachable-loop": "off",
|
|
154
156
|
// In case you want to test errors thrown by a constructor
|
|
155
157
|
"no-new": "off",
|
|
156
158
|
// Generators without yield are common in test helpers/setup
|