@1024pix/eslint-plugin 2.0.6 → 2.1.1

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
- 20.18.3
1
+ 20.19.0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [2.1.1](https://github.com/1024pix/eslint-plugin/compare/v2.1.0...v2.1.1) (2025-03-20)
2
+
3
+ ### :arrow_up: Montée de version
4
+
5
+ - [#51](https://github.com/1024pix/eslint-plugin/pull/51) Update Node.js to v20.19.0
6
+
7
+ # [2.1.0](https://github.com/1024pix/eslint-plugin/compare/v2.0.6...v2.1.0) (2025-02-18)
8
+
9
+ ### :rocket: Amélioration
10
+
11
+ - [#49](https://github.com/1024pix/eslint-plugin/pull/49) Ajouter un saut de ligne entre les éléments
12
+
1
13
  ## [2.0.6](https://github.com/1024pix/eslint-plugin/compare/v2.0.5...v2.0.6) (2025-02-17)
2
14
 
3
15
  ### :arrow_up: Montée de version
package/config.js CHANGED
@@ -56,6 +56,12 @@ export default [
56
56
  ],
57
57
  'no-var': ['error'],
58
58
  'object-curly-spacing': ['error', 'always'],
59
+ 'padding-line-between-statements': [
60
+ 'error',
61
+ { blankLine: 'always', prev: 'block', next: 'block' },
62
+ { blankLine: 'always', prev: 'function', next: 'function' },
63
+ { blankLine: 'always', prev: 'class', next: 'function' }
64
+ ],
59
65
  'prefer-const': ['error'],
60
66
  quotes: ['error', 'single'],
61
67
  semi: ['error', 'always'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/eslint-plugin",
3
- "version": "2.0.6",
3
+ "version": "2.1.1",
4
4
  "description": "Des règles de lint pour les projets 1024pix",
5
5
  "type": "module",
6
6
  "engines": {