@open-xchange/linter-presets 1.18.8 → 1.19.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 +6 -2
- package/dist/eslint/core/ts.d.ts +1 -0
- package/dist/eslint/core/ts.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## `1.18.9` – 2026-Mar-30
|
|
4
|
+
|
|
5
|
+
- changed: (ESLint) temporarily disable rule `@typescript-eslint/no-unnecessary-type-arguments` [typescript-eslint#12158](https://github.com/typescript-eslint/typescript-eslint/issues/12158)
|
|
6
|
+
|
|
3
7
|
## `1.18.8` – 2026-Mar-29
|
|
4
8
|
|
|
5
|
-
- changed: rule `curly` allows single-line statements without braces
|
|
6
|
-
- changed: rules `jest/expect-expect` and `vitest/expect-expect` allow expect functions starting with 'expect'
|
|
9
|
+
- changed: (ESLint) rule `curly` allows single-line statements without braces
|
|
10
|
+
- changed: (ESLint) rules `jest/expect-expect` and `vitest/expect-expect` allow expect functions starting with 'expect'
|
|
7
11
|
|
|
8
12
|
## `1.18.7` – 2026-Mar-26
|
|
9
13
|
|
package/dist/eslint/core/ts.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ export declare const TSESLINT_RULES: {
|
|
|
53
53
|
readonly ignoreOnInitialization: true;
|
|
54
54
|
}];
|
|
55
55
|
readonly '@typescript-eslint/no-unnecessary-qualifier': "error";
|
|
56
|
+
readonly '@typescript-eslint/no-unnecessary-type-arguments': "off";
|
|
56
57
|
readonly '@typescript-eslint/no-unnecessary-type-conversion': "error";
|
|
57
58
|
readonly '@typescript-eslint/no-unnecessary-type-parameters': "off";
|
|
58
59
|
readonly '@typescript-eslint/no-unsafe-declaration-merging': "off";
|
package/dist/eslint/core/ts.js
CHANGED
|
@@ -38,6 +38,8 @@ export const TSESLINT_RULES = {
|
|
|
38
38
|
'@typescript-eslint/no-redeclare': 'error',
|
|
39
39
|
'@typescript-eslint/no-shadow': ['error', { ignoreOnInitialization: true }],
|
|
40
40
|
'@typescript-eslint/no-unnecessary-qualifier': 'error',
|
|
41
|
+
// disabled temporarily: https://github.com/typescript-eslint/typescript-eslint/issues/12158
|
|
42
|
+
'@typescript-eslint/no-unnecessary-type-arguments': 'off',
|
|
41
43
|
'@typescript-eslint/no-unnecessary-type-conversion': 'error',
|
|
42
44
|
'@typescript-eslint/no-unnecessary-type-parameters': 'off',
|
|
43
45
|
'@typescript-eslint/no-unsafe-declaration-merging': 'off',
|