@peerigon/configs 6.0.0 → 6.0.1
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
|
+
## [6.0.1](https://github.com/peerigon/configs/compare/v6.0.0...v6.0.1) (2025-05-02)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **eslint:** Allow await in loops in tests ([5f7da87](https://github.com/peerigon/configs/commit/5f7da87275958ae1e5e82dfaa66b9fbfe684e374))
|
|
6
|
+
|
|
1
7
|
# [6.0.0](https://github.com/peerigon/configs/compare/v5.5.0...v6.0.0) (2025-04-30)
|
|
2
8
|
|
|
3
9
|
### 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
|
},
|