@adobe/eslint-config-helix 2.0.7 → 2.0.9
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 +1 -1
- package/CHANGELOG.md +14 -0
- package/index.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.0.9](https://github.com/adobe/helix-eslint-config/compare/v2.0.8...v2.0.9) (2025-02-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update copyright year ([#224](https://github.com/adobe/helix-eslint-config/issues/224)) ([f66bdf2](https://github.com/adobe/helix-eslint-config/commit/f66bdf20b1bd78f9d4e878e1b8824e727955b86b))
|
|
7
|
+
|
|
8
|
+
## [2.0.8](https://github.com/adobe/helix-eslint-config/compare/v2.0.7...v2.0.8) (2024-10-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency eslint-plugin-import to v2.31.0 ([bbdda61](https://github.com/adobe/helix-eslint-config/commit/bbdda61baf718e17413588cf73f2aea194a2360d))
|
|
14
|
+
|
|
1
15
|
## [2.0.7](https://github.com/adobe/helix-eslint-config/compare/v2.0.6...v2.0.7) (2024-09-07)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -67,7 +67,7 @@ module.exports = {
|
|
|
67
67
|
|
|
68
68
|
// enforce license header
|
|
69
69
|
'header/header': [2, 'block', ['',
|
|
70
|
-
{ pattern: ' * Copyright \\d{4} Adobe\\. All rights reserved\\.', template: ' * Copyright
|
|
70
|
+
{ pattern: ' * Copyright \\d{4} Adobe\\. All rights reserved\\.', template: ' * Copyright 2025 Adobe. All rights reserved.' },
|
|
71
71
|
' * This file is licensed to you under the Apache License, Version 2.0 (the "License");',
|
|
72
72
|
' * you may not use this file except in compliance with the License. You may obtain a copy',
|
|
73
73
|
' * of the License at http://www.apache.org/licenses/LICENSE-2.0',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/eslint-config-helix",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"description": "Helix's ESLint config, based on Airbnb's style guide",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"eslint-config-airbnb-base": "15.0.0",
|
|
29
29
|
"eslint-import-resolver-exports": "1.0.0-beta.5",
|
|
30
30
|
"eslint-plugin-header": "3.1.1",
|
|
31
|
-
"eslint-plugin-import": "2.
|
|
31
|
+
"eslint-plugin-import": "2.31.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@semantic-release/changelog": "6.0.3",
|
|
35
35
|
"@semantic-release/git": "10.0.1",
|
|
36
|
-
"eslint": "8.57.
|
|
37
|
-
"semantic-release": "24.1
|
|
36
|
+
"eslint": "8.57.1",
|
|
37
|
+
"semantic-release": "24.2.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"eslint": "^8.0.0"
|