@typescript-eslint/eslint-plugin 8.68.1-alpha.6 → 8.68.1-alpha.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.
|
@@ -334,8 +334,7 @@ exports.default = (0, util_1.createRule)({
|
|
|
334
334
|
(b.type === utils_1.AST_NODE_TYPES.RestElement) && optionalA === optionalB);
|
|
335
335
|
}
|
|
336
336
|
function typeParametersAreEqual(a, b) {
|
|
337
|
-
return (a.name.name === b.name.name &&
|
|
338
|
-
constraintsAreEqual(a.constraint, b.constraint));
|
|
337
|
+
return (a.name.name === b.name.name && typesAreEqual(a.constraint, b.constraint));
|
|
339
338
|
}
|
|
340
339
|
function typesAreEqual(a, b) {
|
|
341
340
|
return (a === b ||
|
|
@@ -343,9 +342,6 @@ exports.default = (0, util_1.createRule)({
|
|
|
343
342
|
b != null &&
|
|
344
343
|
context.sourceCode.getText(a) === context.sourceCode.getText(b)));
|
|
345
344
|
}
|
|
346
|
-
function constraintsAreEqual(a, b) {
|
|
347
|
-
return a === b || (a != null && a.type === b?.type);
|
|
348
|
-
}
|
|
349
345
|
/* Returns the first index where `a` and `b` differ. */
|
|
350
346
|
function getIndexOfFirstDifference(a, b, equal) {
|
|
351
347
|
for (let i = 0; i < a.length && i < b.length; i++) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/eslint-plugin",
|
|
3
|
-
"version": "8.68.1-alpha.
|
|
3
|
+
"version": "8.68.1-alpha.8",
|
|
4
4
|
"description": "TypeScript plugin for ESLint",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -47,10 +47,10 @@
|
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@eslint-community/regexpp": "^4.12.2",
|
|
50
|
-
"@typescript-eslint/scope-manager": "8.68.1-alpha.
|
|
51
|
-
"@typescript-eslint/type-utils": "8.68.1-alpha.
|
|
52
|
-
"@typescript-eslint/utils": "8.68.1-alpha.
|
|
53
|
-
"@typescript-eslint/visitor-keys": "8.68.1-alpha.
|
|
50
|
+
"@typescript-eslint/scope-manager": "8.68.1-alpha.8",
|
|
51
|
+
"@typescript-eslint/type-utils": "8.68.1-alpha.8",
|
|
52
|
+
"@typescript-eslint/utils": "8.68.1-alpha.8",
|
|
53
|
+
"@typescript-eslint/visitor-keys": "8.68.1-alpha.8",
|
|
54
54
|
"ignore": "^7.0.5",
|
|
55
55
|
"natural-compare": "^1.4.0",
|
|
56
56
|
"ts-api-utils": "^2.5.0"
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"@types/mdast": "^4.0.4",
|
|
61
61
|
"@types/natural-compare": "^1.4.3",
|
|
62
62
|
"@types/react": "^18.3.21",
|
|
63
|
-
"@typescript-eslint/rule-schema-to-typescript-types": "8.68.1-alpha.
|
|
64
|
-
"@typescript-eslint/rule-tester": "8.68.1-alpha.
|
|
63
|
+
"@typescript-eslint/rule-schema-to-typescript-types": "8.68.1-alpha.8",
|
|
64
|
+
"@typescript-eslint/rule-tester": "8.68.1-alpha.8",
|
|
65
65
|
"@typescript/native": "npm:typescript@^7.0.2",
|
|
66
66
|
"@vitest/coverage-v8": "^4.0.18",
|
|
67
67
|
"ajv": "^6.12.6",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"vitest": "^4.0.18"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
|
-
"@typescript-eslint/parser": "^8.68.1-alpha.
|
|
84
|
+
"@typescript-eslint/parser": "^8.68.1-alpha.8",
|
|
85
85
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
86
86
|
"typescript": ">=4.8.4 <6.1.0"
|
|
87
87
|
},
|