@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 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerigon/configs",
3
- "version": "14.5.0",
3
+ "version": "14.6.0",
4
4
  "description": "Configs for ESLint, Prettier, TypeScript & friends",
5
5
  "keywords": [
6
6
  "eslint",