@peerigon/configs 14.4.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,15 @@
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
+
7
+ # [14.5.0](https://github.com/peerigon/configs/compare/v14.4.0...v14.5.0) (2026-03-10)
8
+
9
+ ### Features
10
+
11
+ - **eslint:** disable require-yield for tests ([e326f8f](https://github.com/peerigon/configs/commit/e326f8f2045df0247ff43f7b61ad37791d5a3fad))
12
+
1
13
  # [14.4.0](https://github.com/peerigon/configs/compare/v14.3.0...v14.4.0) (2026-03-05)
2
14
 
3
15
  ### Features
@@ -151,8 +151,12 @@ 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",
158
+ // Generators without yield are common in test helpers/setup
159
+ "require-yield": "off",
156
160
  // should show a warning when a test is focussed (overridden to off when using vitest config)
157
161
  "no-only-tests/no-only-tests": "error",
158
162
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerigon/configs",
3
- "version": "14.4.0",
3
+ "version": "14.6.0",
4
4
  "description": "Configs for ESLint, Prettier, TypeScript & friends",
5
5
  "keywords": [
6
6
  "eslint",