@1024pix/eslint-plugin 2.0.6 → 2.1.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # [2.1.0](https://github.com/1024pix/eslint-plugin/compare/v2.0.6...v2.1.0) (2025-02-18)
2
+
3
+ ### :rocket: Amélioration
4
+
5
+ - [#49](https://github.com/1024pix/eslint-plugin/pull/49) Ajouter un saut de ligne entre les éléments
6
+
1
7
  ## [2.0.6](https://github.com/1024pix/eslint-plugin/compare/v2.0.5...v2.0.6) (2025-02-17)
2
8
 
3
9
  ### :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.0",
4
4
  "description": "Des règles de lint pour les projets 1024pix",
5
5
  "type": "module",
6
6
  "engines": {