@adobe/eslint-config-helix 3.0.23 → 3.0.25
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/.github/workflows/main.yaml +7 -1
- package/CHANGELOG.md +14 -0
- package/package.json +2 -2
- package/rules/best-practices.js +1 -1
|
@@ -5,6 +5,12 @@ env:
|
|
|
5
5
|
CI_BUILD_NUM: ${{ github.run_id }}
|
|
6
6
|
CI_BRANCH: ${{ github.ref_name }}
|
|
7
7
|
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write
|
|
10
|
+
contents: write # semantic-release-dry verifies the write permissions
|
|
11
|
+
issues: read # needed by semantic-release
|
|
12
|
+
pull-requests: write # needed by semantic-release
|
|
13
|
+
|
|
8
14
|
jobs:
|
|
9
15
|
test:
|
|
10
16
|
name: Test
|
|
@@ -18,7 +24,7 @@ jobs:
|
|
|
18
24
|
- run: npm ci
|
|
19
25
|
- run: npm run lint
|
|
20
26
|
- run: npm test
|
|
21
|
-
- uses: codecov/codecov-action@
|
|
27
|
+
- uses: codecov/codecov-action@v6
|
|
22
28
|
with:
|
|
23
29
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
24
30
|
- name: Semantic Release (Dry Run)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [3.0.25](https://github.com/adobe/helix-eslint-config/compare/v3.0.24...v3.0.25) (2026-04-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @eslint/config-helpers to v0.5.4 ([#259](https://github.com/adobe/helix-eslint-config/issues/259)) ([4dbc4f0](https://github.com/adobe/helix-eslint-config/commit/4dbc4f03d0ac37b0f3cb69bb32000732bb2aa2e1))
|
|
7
|
+
|
|
8
|
+
## [3.0.24](https://github.com/adobe/helix-eslint-config/compare/v3.0.23...v3.0.24) (2026-04-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* restrict curl to all ([6d27e92](https://github.com/adobe/helix-eslint-config/commit/6d27e92e061b8f3a00eb196e4ef40075c17bfa1d))
|
|
14
|
+
|
|
1
15
|
## [3.0.23](https://github.com/adobe/helix-eslint-config/compare/v3.0.22...v3.0.23) (2026-03-23)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/eslint-config-helix",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.25",
|
|
4
4
|
"description": "Helix's ESLint config, based on Airbnb's style guide",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/adobe/helix-eslint-config#readme",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@eslint/config-helpers": "0.5.
|
|
29
|
+
"@eslint/config-helpers": "0.5.4",
|
|
30
30
|
"eslint-plugin-import": "2.32.0",
|
|
31
31
|
"globals": "17.4.0"
|
|
32
32
|
},
|
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
|