@open-xchange/linter-presets 1.15.1 → 1.15.2

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,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## `1.15.2` – 2025-Nov-03
4
+
5
+ - fixed: (ESLint) temporarily disable `@typescript-eslint/unified-signatures` ([typescript-eslint#11732](https://github.com/typescript-eslint/typescript-eslint/issues/11732))
6
+ - chore: bump dependencies
7
+
3
8
  ## `1.15.1` – 2025-Oct-30
4
9
 
5
10
  - fixed: (ESLint) type incompatibilities
@@ -51,7 +56,7 @@
51
56
 
52
57
  ## `1.9.5` – 2025-Sep-22
53
58
 
54
- - chore: (ESLint) bump `eslint-plugin-jsdoc` to v60.1.1 (fix for <https://github.com/gajus/eslint-plugin-jsdoc/issues/1538>)
59
+ - chore: (ESLint) bump `eslint-plugin-jsdoc` to v60.1.1 (fix for [eslint-plugin-jsdoc#1538](https://github.com/gajus/eslint-plugin-jsdoc/issues/1538))
55
60
 
56
61
  ## `1.9.4` – 2025-Sep-18
57
62
 
@@ -550,8 +555,8 @@
550
555
  ## `0.1.11` – 2024-Jul-30
551
556
 
552
557
  - chore: bump dependencies
553
- - skipped eslint-plugin-jsdoc: <https://github.com/gajus/eslint-plugin-jsdoc/issues/1282>
554
- - skipped @stylistic/eslint-plugin: <https://github.com/typescript-eslint/typescript-eslint/issues/9655>
558
+ - skipped eslint-plugin-jsdoc: [eslint-plugin-jsdoc#1282](https://github.com/gajus/eslint-plugin-jsdoc/issues/1282)
559
+ - skipped @stylistic/eslint-plugin: [typescript-eslint#9655](https://github.com/typescript-eslint/typescript-eslint/issues/9655)
555
560
 
556
561
  ## `0.1.10` – 2024-Jul-26
557
562
 
@@ -78,7 +78,8 @@ export default function ts(rootDir) {
78
78
  "@typescript-eslint/restrict-template-expressions": "off",
79
79
  "@typescript-eslint/return-await": ["error", "always"],
80
80
  "@typescript-eslint/switch-exhaustiveness-check": ["error", { considerDefaultExhaustiveForUnions: true }],
81
- "@typescript-eslint/unified-signatures": ["error", { ignoreDifferentlyNamedParameters: true }],
81
+ // TODO: rule crashes always with ESLint 9.39: https://github.com/typescript-eslint/typescript-eslint/issues/11732
82
+ "@typescript-eslint/unified-signatures": "off", /* ["error", { ignoreDifferentlyNamedParameters: true }], */
82
83
  },
83
84
  },
84
85
  // fixes for module definition files
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-xchange/linter-presets",
3
- "version": "1.15.1",
3
+ "version": "1.15.2",
4
4
  "description": "Configuration presets for ESLint and StyleLint",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,17 +34,17 @@
34
34
  "@babel/eslint-parser": "^7.28.5",
35
35
  "@babel/plugin-proposal-decorators": "^7.28.0",
36
36
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
37
- "@eslint-react/eslint-plugin": "^2.2.4",
37
+ "@eslint-react/eslint-plugin": "^2.3.1",
38
38
  "@eslint/compat": "^1.4.1",
39
39
  "@eslint/config-helpers": "^0.4.2",
40
- "@eslint/js": "^9.38.0",
40
+ "@eslint/js": "^9.39.0",
41
41
  "@eslint/markdown": "^7.5.0",
42
42
  "@stylistic/eslint-plugin": "^5.5.0",
43
43
  "@stylistic/eslint-plugin-migrate": "^4.4.1",
44
44
  "@stylistic/stylelint-config": "^3.0.1",
45
45
  "@stylistic/stylelint-plugin": "^4.0.0",
46
46
  "@types/picomatch": "^4.0.2",
47
- "@vitest/eslint-plugin": "^1.3.26",
47
+ "@vitest/eslint-plugin": "^1.4.0",
48
48
  "confusing-browser-globals": "^1.0.11",
49
49
  "empathic": "^2.0.0",
50
50
  "eslint-plugin-chai-expect": "^3.1.0",
@@ -67,7 +67,7 @@
67
67
  "eslint-plugin-testing-library": "^7.13.3",
68
68
  "eslint-plugin-vue": "^10.5.1",
69
69
  "eslint-plugin-yml": "^1.19.0",
70
- "globals": "^16.4.0",
70
+ "globals": "^16.5.0",
71
71
  "picomatch": "^4.0.3",
72
72
  "postcss-html": "^1.8.0",
73
73
  "stylelint-config-standard": "^39.0.1",
@@ -81,10 +81,10 @@
81
81
  "devDependencies": {
82
82
  "@types/confusing-browser-globals": "^1.0.3",
83
83
  "@types/eslint-scope": "^8.3.2",
84
- "@types/node": "^24.9.2",
84
+ "@types/node": "^24.10.0",
85
85
  "@types/react": "^19.2.2",
86
86
  "@typescript-eslint/utils": "^8.46.2",
87
- "eslint": "^9.38.0",
87
+ "eslint": "^9.39.0",
88
88
  "jest": "^30.2.0",
89
89
  "jiti": "^2.6.1",
90
90
  "premove": "^4.0.0",