@peerigon/configs 6.0.0 → 6.1.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,17 @@
1
+ # [6.1.0](https://github.com/peerigon/configs/compare/v6.0.1...v6.1.0) (2025-05-05)
2
+
3
+ ### Features
4
+
5
+ - **eslint:** bump @eslint/compat from 1.2.8 to 1.2.9 ([#70](https://github.com/peerigon/configs/issues/70)) ([27aed65](https://github.com/peerigon/configs/commit/27aed650fbb1d9e1ba0b8d09e771742ecf003b9b))
6
+ - **eslint:** bump @eslint/js from 9.25.1 to 9.26.0 ([#67](https://github.com/peerigon/configs/issues/67)) ([4eb269d](https://github.com/peerigon/configs/commit/4eb269d9ec17326ce5cc052589dc5a4f779db999))
7
+ - **eslint:** bump typescript-eslint from 8.30.1 to 8.31.1 ([#68](https://github.com/peerigon/configs/issues/68)) ([f5a4335](https://github.com/peerigon/configs/commit/f5a4335457936a5e56878dcd02b5f87c03ca8877))
8
+
9
+ ## [6.0.1](https://github.com/peerigon/configs/compare/v6.0.0...v6.0.1) (2025-05-02)
10
+
11
+ ### Bug Fixes
12
+
13
+ - **eslint:** Allow await in loops in tests ([5f7da87](https://github.com/peerigon/configs/commit/5f7da87275958ae1e5e82dfaa66b9fbfe684e374))
14
+
1
15
  # [6.0.0](https://github.com/peerigon/configs/compare/v5.5.0...v6.0.0) (2025-04-30)
2
16
 
3
17
  ### Features
@@ -144,6 +144,8 @@ export const javascript = [
144
144
  "unicorn/prefer-top-level-await": "off",
145
145
  // Nesting is pretty common in tests when you group tests
146
146
  "max-nested-callbacks": "off",
147
+ // await in loops is pretty common in Playwright tests
148
+ "no-await-in-loop": "off",
147
149
  // In case you want to test errors thrown by a constructor
148
150
  "no-new": "off",
149
151
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerigon/configs",
3
- "version": "6.0.0",
3
+ "version": "6.1.0",
4
4
  "description": "Configs for ESLint, Prettier, TypeScript & friends",
5
5
  "keywords": [
6
6
  "eslint",
@@ -97,7 +97,7 @@
97
97
  "eslint": "^9.21.0",
98
98
  "husky": "^9.1.7",
99
99
  "lint-staged": "^15.4.3",
100
- "npm-run-all2": "^7.0.2",
100
+ "npm-run-all2": "^8.0.1",
101
101
  "pin-github-action": "^3.1.2",
102
102
  "prettier": "^3.5.3",
103
103
  "react": "^19.0.0",