@ethberry/eslint-config 5.0.7 → 5.0.8

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/package.json CHANGED
@@ -8,25 +8,23 @@
8
8
  "url": "https://github.com/ethberry/eslint-config/issues"
9
9
  },
10
10
  "dependencies": {
11
- "@eslint/js": "9.31.0",
12
- "@stylistic/eslint-plugin-js": "4.4.1",
13
- "@stylistic/eslint-plugin-jsx": "4.4.1",
14
- "@stylistic/eslint-plugin-ts": "4.4.1",
15
- "eslint": "9.31.0",
16
- "eslint-config-prettier": "10.1.5",
11
+ "@eslint/js": "9.32.0",
12
+ "@stylistic/eslint-plugin": "5.2.2",
13
+ "eslint": "9.32.0",
14
+ "eslint-config-prettier": "10.1.8",
17
15
  "eslint-import-resolver-typescript": "4.4.4",
18
16
  "eslint-plugin-import": "2.32.0",
19
17
  "eslint-plugin-jest": "29.0.1",
20
18
  "eslint-plugin-mocha": "11.1.0",
21
- "eslint-plugin-n": "17.21.0",
22
- "eslint-plugin-prettier": "5.5.1",
19
+ "eslint-plugin-n": "17.21.3",
20
+ "eslint-plugin-prettier": "5.5.3",
23
21
  "eslint-plugin-promise": "7.2.1",
24
22
  "eslint-plugin-react": "7.37.5",
25
- "eslint-plugin-testing-library": "7.6.0",
23
+ "eslint-plugin-testing-library": "7.6.3",
26
24
  "globals": "16.3.0",
27
25
  "prettier": "3.6.2",
28
26
  "typescript": "5.8.3",
29
- "typescript-eslint": "8.36.0"
27
+ "typescript-eslint": "8.38.0"
30
28
  },
31
29
  "engines": {
32
30
  "node": ">=22"
@@ -48,5 +46,5 @@
48
46
  },
49
47
  "sideEffects": false,
50
48
  "title": "EthBerry ESLint config",
51
- "version": "5.0.7"
49
+ "version": "5.0.8"
52
50
  }
package/rules/common.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import js from "@eslint/js";
2
- import stylisticJs from "@stylistic/eslint-plugin-js";
2
+ import stylistic from "@stylistic/eslint-plugin";
3
3
 
4
4
  export default [
5
5
  // base
@@ -30,7 +30,7 @@ export default [
30
30
  // stylistic
31
31
  {
32
32
  plugins: {
33
- "@stylistic/js": stylisticJs,
33
+ "@stylistic": stylistic,
34
34
  },
35
35
  rules: {
36
36
  "max-len": [
package/rules/react.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import reactPlugin from "eslint-plugin-react";
2
2
  import globals from "globals";
3
- import stylisticJsx from "@stylistic/eslint-plugin-jsx";
3
+ import stylistic from "@stylistic/eslint-plugin";
4
4
 
5
5
  export default [
6
6
  // config
@@ -38,10 +38,10 @@ export default [
38
38
  // stylistic
39
39
  {
40
40
  plugins: {
41
- "@stylistic/jsx": stylisticJsx,
41
+ "@stylistic": stylistic,
42
42
  },
43
43
  rules: {
44
- "@stylistic/jsx/jsx-indent": ["error", 2],
44
+ "@stylistic/jsx-indent": ["error", 2],
45
45
  },
46
46
  },
47
47
  ]
@@ -1,5 +1,5 @@
1
1
  import tsEslint from "typescript-eslint";
2
- import stylisticTs from "@stylistic/eslint-plugin-ts";
2
+ import stylistic from "@stylistic/eslint-plugin";
3
3
 
4
4
  export default [
5
5
  // base
@@ -55,7 +55,7 @@ export default [
55
55
  // stylistic
56
56
  {
57
57
  plugins: {
58
- "@stylistic/ts": stylisticTs,
58
+ "@stylistic": stylistic,
59
59
  },
60
60
  },
61
61
  ]