@1024pix/eslint-plugin 2.1.15 → 2.1.17

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/.nvmrc CHANGED
@@ -1 +1 @@
1
- 24.12.0
1
+ 24.13.0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [2.1.17](https://github.com/1024pix/eslint-plugin/compare/v2.1.16...v2.1.17) (2026-01-19)
2
+
3
+ ### :arrow_up: Montée de version
4
+
5
+ - [#70](https://github.com/1024pix/eslint-plugin/pull/70) Update Node.js to v24.13.0
6
+
7
+ ## [2.1.16](https://github.com/1024pix/eslint-plugin/compare/v2.1.15...v2.1.16) (2026-01-15)
8
+
9
+ ### :building_construction: Tech
10
+
11
+ - [#69](https://github.com/1024pix/eslint-plugin/pull/69) Supprime les règles de formattage dépréciées.
12
+
1
13
  ## [2.1.15](https://github.com/1024pix/eslint-plugin/compare/v2.1.14...v2.1.15) (2025-12-31)
2
14
 
3
15
  ### :building_construction: Tech
package/config.js CHANGED
@@ -15,27 +15,7 @@ export default [
15
15
  },
16
16
  rules: {
17
17
  'no-console': 'error',
18
- 'arrow-parens': ['error', 'always'],
19
- 'comma-dangle': ['error', 'always-multiline'],
20
- 'computed-property-spacing': ['error', 'never'],
21
- 'eol-last': ['error'],
22
18
  '@eslint-community/eslint-comments/no-unused-disable': ['error'],
23
- indent: [
24
- 'error',
25
- 2,
26
- {
27
- SwitchCase: 1,
28
- },
29
- ],
30
- 'keyword-spacing': ['error'],
31
- 'linebreak-style': ['error', 'unix'],
32
- 'no-multiple-empty-lines': [
33
- 'error',
34
- {
35
- max: 1,
36
- maxEOF: 1,
37
- },
38
- ],
39
19
  'no-restricted-syntax': [
40
20
  'error',
41
21
  {
@@ -56,34 +36,9 @@ export default [
56
36
  },
57
37
  ],
58
38
  'no-var': ['error'],
59
- 'object-curly-spacing': ['error', 'always'],
60
- 'padding-line-between-statements': [
61
- 'error',
62
- { blankLine: 'always', prev: 'block', next: 'block' },
63
- { blankLine: 'always', prev: 'function', next: 'function' },
64
- { blankLine: 'always', prev: 'class', next: 'function' }
65
- ],
66
39
  'prefer-const': ['error'],
67
- quotes: ['error', 'single'],
68
- semi: ['error', 'always'],
69
40
  'simple-import-sort/imports': 'error',
70
41
  'simple-import-sort/exports': 'error',
71
- 'space-before-blocks': ['error'],
72
- 'space-before-function-paren': [
73
- 'error',
74
- {
75
- anonymous: 'never',
76
- named: 'never',
77
- asyncArrow: 'ignore',
78
- },
79
- ],
80
- 'space-in-parens': ['error'],
81
- 'space-infix-ops': ['error'],
82
- 'func-call-spacing': ['error'],
83
- 'key-spacing': ['error'],
84
- 'comma-spacing': ['error'],
85
- 'no-trailing-spaces': ['error'],
86
- 'no-multi-spaces': ['error'],
87
42
  'yml/quotes': [
88
43
  'error',
89
44
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/eslint-plugin",
3
- "version": "2.1.15",
3
+ "version": "2.1.17",
4
4
  "description": "Des règles de lint pour les projets 1024pix",
5
5
  "type": "module",
6
6
  "engines": {