@adobe/eslint-config-helix 2.0.4 → 2.0.6

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.
@@ -27,15 +27,15 @@ jobs:
27
27
  uses: actions/checkout@v4
28
28
 
29
29
  - name: Initialize CodeQL
30
- uses: github/codeql-action/init@v2
30
+ uses: github/codeql-action/init@v3
31
31
  with:
32
32
  languages: ${{ matrix.language }}
33
33
  queries: +security-and-quality
34
34
 
35
35
  - name: Autobuild
36
- uses: github/codeql-action/autobuild@v2
36
+ uses: github/codeql-action/autobuild@v3
37
37
 
38
38
  - name: Perform CodeQL Analysis
39
- uses: github/codeql-action/analyze@v2
39
+ uses: github/codeql-action/analyze@v3
40
40
  with:
41
41
  category: "/language:${{ matrix.language }}"
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [2.0.6](https://github.com/adobe/helix-eslint-config/compare/v2.0.5...v2.0.6) (2024-02-01)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **template:** it's 2024, baby ([eda47a3](https://github.com/adobe/helix-eslint-config/commit/eda47a326e1d897de1c896753b8441fd8f452055))
7
+
8
+ ## [2.0.5](https://github.com/adobe/helix-eslint-config/compare/v2.0.4...v2.0.5) (2023-11-17)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * ignore underscore throw-away variable ([#198](https://github.com/adobe/helix-eslint-config/issues/198)) ([2279802](https://github.com/adobe/helix-eslint-config/commit/2279802ed7f305352e682bcad892f4634a8f371b))
14
+
1
15
  ## [2.0.4](https://github.com/adobe/helix-eslint-config/compare/v2.0.3...v2.0.4) (2023-10-28)
2
16
 
3
17
 
package/index.js CHANGED
@@ -55,6 +55,7 @@ module.exports = {
55
55
  // allow '_' as a throw-away variable
56
56
  'no-unused-vars': ['error', {
57
57
  argsIgnorePattern: '^_$',
58
+ varsIgnorePattern: '^_$',
58
59
  }],
59
60
 
60
61
  'no-shadow': ['error', {
@@ -66,7 +67,7 @@ module.exports = {
66
67
 
67
68
  // enforce license header
68
69
  'header/header': [2, 'block', ['',
69
- { pattern: ' * Copyright \\d{4} Adobe\\. All rights reserved\\.', template: ' * Copyright 2023 Adobe. All rights reserved.' },
70
+ { pattern: ' * Copyright \\d{4} Adobe\\. All rights reserved\\.', template: ' * Copyright 2024 Adobe. All rights reserved.' },
70
71
  ' * This file is licensed to you under the Apache License, Version 2.0 (the "License");',
71
72
  ' * you may not use this file except in compliance with the License. You may obtain a copy',
72
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.4",
3
+ "version": "2.0.6",
4
4
  "description": "Helix's ESLint config, based on Airbnb's style guide",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,13 +27,13 @@
27
27
  "eslint-config-airbnb-base": "15.0.0",
28
28
  "eslint-import-resolver-exports": "1.0.0-beta.5",
29
29
  "eslint-plugin-header": "3.1.1",
30
- "eslint-plugin-import": "2.29.0"
30
+ "eslint-plugin-import": "2.29.1"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@semantic-release/changelog": "6.0.3",
34
34
  "@semantic-release/git": "10.0.1",
35
- "eslint": "8.52.0",
36
- "semantic-release": "22.0.5"
35
+ "eslint": "8.56.0",
36
+ "semantic-release": "22.0.12"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "eslint": "^8.0.0"