@1024pix/eslint-plugin 2.1.13 → 2.1.15

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.
@@ -7,6 +7,6 @@ jobs:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
9
  - name: Checkout Repository
10
- uses: actions/checkout@v5
10
+ uses: actions/checkout@v6
11
11
 
12
12
  - uses: 1024pix/pix-actions/check-node-version-availability-on-scalingo@v0
@@ -1,25 +1,33 @@
1
1
  name: release
2
2
 
3
+ permissions:
4
+ id-token: write
5
+ contents: write
6
+ pull-requests: write
7
+
3
8
  on:
4
9
  push:
5
10
  branches:
6
11
  - main
7
12
  repository_dispatch:
8
- types: ['deploy']
13
+ types: ["deploy"]
9
14
  workflow_dispatch:
10
15
 
11
16
  jobs:
12
17
  release:
13
18
  runs-on: ubuntu-latest
14
19
  steps:
15
- - uses: actions/checkout@v5
20
+ - uses: actions/checkout@v6
16
21
  with:
17
22
  persist-credentials: false
18
23
 
24
+ - uses: actions/setup-node@v6
25
+ with:
26
+ node-version: 24
27
+
19
28
  - uses: 1024pix/pix-actions/release@main
20
29
  with:
21
30
  npmPublish: true
22
31
  updateMajorVersion: true
23
32
  env:
24
- GITHUB_TOKEN: '${{ secrets.PIX_SERVICE_ACTIONS_TOKEN }}'
25
- NPM_TOKEN: ${{ secrets.NPM_PUBLISH_ACCESS_TOKEN }}
33
+ GITHUB_TOKEN: "${{ secrets.PIX_SERVICE_ACTIONS_TOKEN }}"
@@ -6,8 +6,8 @@ jobs:
6
6
  test:
7
7
  runs-on: ubuntu-latest
8
8
  steps:
9
- - uses: actions/checkout@v5
10
- - uses: actions/setup-node@v5
9
+ - uses: actions/checkout@v6
10
+ - uses: actions/setup-node@v6
11
11
  with:
12
12
  node-version-file: '.nvmrc'
13
13
 
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 22.21.0
1
+ 24.12.0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+ ## [2.1.15](https://github.com/1024pix/eslint-plugin/compare/v2.1.14...v2.1.15) (2025-12-31)
2
+
3
+ ### :building_construction: Tech
4
+
5
+ - [#67](https://github.com/1024pix/eslint-plugin/pull/67) Mise en place du trusted publishing de npm
6
+
7
+ ### :arrow_up: Montée de version
8
+
9
+ - [#66](https://github.com/1024pix/eslint-plugin/pull/66) Update actions/checkout action to v6 (workflows)
10
+ - [#62](https://github.com/1024pix/eslint-plugin/pull/62) Update actions/setup-node action to v6 (workflows)
11
+ - [#65](https://github.com/1024pix/eslint-plugin/pull/65) Update Node.js to v24
12
+
13
+ ### :coffee: Autre
14
+
15
+ - [#68](https://github.com/1024pix/eslint-plugin/pull/68) Active la règle interdisant les `console.xx`.
16
+
17
+ ## [2.1.14](https://github.com/1024pix/eslint-plugin/compare/v2.1.13...v2.1.14) (2025-11-04)
18
+
19
+ ### :arrow_up: Montée de version
20
+
21
+ - [#64](https://github.com/1024pix/eslint-plugin/pull/64) Update Node.js to v22.21.1
22
+
1
23
  ## [2.1.13](https://github.com/1024pix/eslint-plugin/compare/v2.1.12...v2.1.13) (2025-10-27)
2
24
 
3
25
  ### :arrow_up: Montée de version
package/config.js CHANGED
@@ -14,6 +14,7 @@ export default [
14
14
  'simple-import-sort': simpleImportSort,
15
15
  },
16
16
  rules: {
17
+ 'no-console': 'error',
17
18
  'arrow-parens': ['error', 'always'],
18
19
  'comma-dangle': ['error', 'always-multiline'],
19
20
  'computed-property-spacing': ['error', 'never'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/eslint-plugin",
3
- "version": "2.1.13",
3
+ "version": "2.1.15",
4
4
  "description": "Des règles de lint pour les projets 1024pix",
5
5
  "type": "module",
6
6
  "engines": {
package/readme.md CHANGED
@@ -58,7 +58,7 @@ Sure, you can override the rules in your `eslint.config.js` file.
58
58
  const pixEslintConfig = require('@1024pix/eslint-plugin/config');
59
59
 
60
60
  module.exports = [
61
- ...eslintConfig,
61
+ ...pixEslintConfig,
62
62
  {
63
63
  rules: {
64
64
  // your rules...