eslint-config-greenpie 10.0.0 → 10.2.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.
@@ -42,7 +42,10 @@ export default tsEslint.config({
42
42
  '@stylistic/js/linebreak-style': 'error',
43
43
 
44
44
  '@stylistic/js/lines-around-comment': ['error', {
45
- allowBlockStart: true
45
+ allowBlockStart: true,
46
+ allowObjectStart: true,
47
+ allowArrayStart: true,
48
+ allowClassStart: true
46
49
  }],
47
50
 
48
51
  '@stylistic/js/lines-between-class-members': 'error',
@@ -50,7 +50,14 @@ export default tsEslint.config({
50
50
  '@stylistic/ts/keyword-spacing': 'error',
51
51
 
52
52
  '@stylistic/ts/lines-around-comment': ['error', {
53
- allowBlockStart: true
53
+ allowBlockStart: true,
54
+ allowObjectStart: true,
55
+ allowArrayStart: true,
56
+ allowClassStart: true,
57
+ allowInterfaceStart: true,
58
+ allowModuleStart: true,
59
+ allowTypeStart: true,
60
+ allowEnumStart: true
54
61
  }],
55
62
 
56
63
  // TODO: Lack of configuration. Can it be replaced by `padding-line-between-statements`?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-greenpie",
3
- "version": "10.0.0",
3
+ "version": "10.2.0",
4
4
  "description": "GreenPie's ESLint config file",
5
5
  "main": "index.js",
6
6
  "author": "Roman Nuritdinov (Ky6uk)",
@@ -29,11 +29,11 @@
29
29
  "vue"
30
30
  ],
31
31
  "peerDependencies": {
32
- "@stylistic/eslint-plugin-js": "^4.0.0",
33
- "@stylistic/eslint-plugin-plus": "^4.0.0",
34
- "@stylistic/eslint-plugin-ts": "^4.0.0",
35
- "eslint": "^9.20.1",
32
+ "@stylistic/eslint-plugin-js": "^4.1.0",
33
+ "@stylistic/eslint-plugin-plus": "^4.1.0",
34
+ "@stylistic/eslint-plugin-ts": "^4.1.0",
35
+ "eslint": "^9.21.0",
36
36
  "eslint-plugin-vue": "^9.32.0",
37
- "typescript-eslint": "^8.24.1"
37
+ "typescript-eslint": "^8.25.0"
38
38
  }
39
39
  }