@adobe/eslint-config-helix 3.0.23 → 3.0.24
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 +7 -0
- package/package.json +1 -1
- package/rules/best-practices.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.0.24](https://github.com/adobe/helix-eslint-config/compare/v3.0.23...v3.0.24) (2026-04-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* restrict curl to all ([6d27e92](https://github.com/adobe/helix-eslint-config/commit/6d27e92e061b8f3a00eb196e4ef40075c17bfa1d))
|
|
7
|
+
|
|
1
8
|
## [3.0.23](https://github.com/adobe/helix-eslint-config/compare/v3.0.22...v3.0.23) (2026-03-23)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/rules/best-practices.js
CHANGED
|
@@ -39,7 +39,7 @@ export default {
|
|
|
39
39
|
|
|
40
40
|
// specify curly brace conventions for all control statements
|
|
41
41
|
// https://eslint.org/docs/rules/curly
|
|
42
|
-
curly: ['error', '
|
|
42
|
+
curly: ['error', 'all'],
|
|
43
43
|
|
|
44
44
|
// require default case in switch statements
|
|
45
45
|
// https://eslint.org/docs/rules/default-case
|