@typescript-eslint/eslint-plugin 8.63.1-alpha.11 → 8.63.1-alpha.13
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/dist/rules/no-shadow.js
CHANGED
|
@@ -57,7 +57,7 @@ exports.default = (0, util_1.createRule)({
|
|
|
57
57
|
},
|
|
58
58
|
ignoreOnInitialization: {
|
|
59
59
|
type: 'boolean',
|
|
60
|
-
description: 'Whether to ignore the variable initializers when the shadowed variable is presumably still
|
|
60
|
+
description: 'Whether to ignore the variable initializers when the shadowed variable is presumably still uninitialized.',
|
|
61
61
|
},
|
|
62
62
|
ignoreTypeValueShadow: {
|
|
63
63
|
type: 'boolean',
|
|
@@ -21,7 +21,7 @@ exports.default = (0, util_1.createRule)({
|
|
|
21
21
|
properties: {
|
|
22
22
|
allowDestructuring: {
|
|
23
23
|
type: 'boolean',
|
|
24
|
-
description: 'Whether to ignore
|
|
24
|
+
description: 'Whether to ignore destructuring, such as `const { props, state } = this`.',
|
|
25
25
|
},
|
|
26
26
|
allowedNames: {
|
|
27
27
|
type: 'array',
|
|
@@ -173,7 +173,7 @@ exports.default = (0, util_1.createRule)({
|
|
|
173
173
|
}
|
|
174
174
|
return false;
|
|
175
175
|
}
|
|
176
|
-
function
|
|
176
|
+
function isUnnecessaryTypeInterpolation({ interpolation, nextQuasi, prevQuasi, }) {
|
|
177
177
|
if (hasCommentsBetweenQuasi(prevQuasi, nextQuasi)) {
|
|
178
178
|
return false;
|
|
179
179
|
}
|
|
@@ -337,7 +337,7 @@ exports.default = (0, util_1.createRule)({
|
|
|
337
337
|
return;
|
|
338
338
|
}
|
|
339
339
|
}
|
|
340
|
-
const infos = getInterpolationInfos(node).filter(
|
|
340
|
+
const infos = getInterpolationInfos(node).filter(isUnnecessaryTypeInterpolation);
|
|
341
341
|
for (const reportDescriptor of getReportDescriptors(infos)) {
|
|
342
342
|
context.report(reportDescriptor);
|
|
343
343
|
}
|
|
@@ -113,7 +113,7 @@ exports.default = (0, util_1.createRule)({
|
|
|
113
113
|
},
|
|
114
114
|
ignoreRestSiblings: {
|
|
115
115
|
type: 'boolean',
|
|
116
|
-
description: 'Whether to ignore sibling properties in `...`
|
|
116
|
+
description: 'Whether to ignore sibling properties in `...` destructuring.',
|
|
117
117
|
},
|
|
118
118
|
ignoreUsingDeclarations: {
|
|
119
119
|
type: 'boolean',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/eslint-plugin",
|
|
3
|
-
"version": "8.63.1-alpha.
|
|
3
|
+
"version": "8.63.1-alpha.13",
|
|
4
4
|
"description": "TypeScript plugin for ESLint",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"ignore": "^7.0.5",
|
|
50
50
|
"natural-compare": "^1.4.0",
|
|
51
51
|
"ts-api-utils": "^2.5.0",
|
|
52
|
-
"@typescript-eslint/scope-manager": "8.63.1-alpha.
|
|
53
|
-
"@typescript-eslint/utils": "8.63.1-alpha.
|
|
54
|
-
"@typescript-eslint/
|
|
55
|
-
"@typescript-eslint/
|
|
52
|
+
"@typescript-eslint/scope-manager": "8.63.1-alpha.13",
|
|
53
|
+
"@typescript-eslint/type-utils": "8.63.1-alpha.13",
|
|
54
|
+
"@typescript-eslint/utils": "8.63.1-alpha.13",
|
|
55
|
+
"@typescript-eslint/visitor-keys": "8.63.1-alpha.13"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/json-schema": "^7.0.15",
|
|
@@ -76,13 +76,13 @@
|
|
|
76
76
|
"typescript": ">=4.8.4 <6.1.0",
|
|
77
77
|
"unist-util-visit": "^5.0.0",
|
|
78
78
|
"vitest": "^4.0.18",
|
|
79
|
-
"@typescript-eslint/rule-schema-to-typescript-types": "8.63.1-alpha.
|
|
80
|
-
"@typescript-eslint/rule-tester": "8.63.1-alpha.
|
|
79
|
+
"@typescript-eslint/rule-schema-to-typescript-types": "8.63.1-alpha.13",
|
|
80
|
+
"@typescript-eslint/rule-tester": "8.63.1-alpha.13"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
83
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
84
84
|
"typescript": ">=4.8.4 <6.1.0",
|
|
85
|
-
"@typescript-eslint/parser": "^8.63.1-alpha.
|
|
85
|
+
"@typescript-eslint/parser": "^8.63.1-alpha.13"
|
|
86
86
|
},
|
|
87
87
|
"funding": {
|
|
88
88
|
"type": "opencollective",
|