@typescript-eslint/eslint-plugin 8.65.1-alpha.13 → 8.65.1-alpha.15
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.
|
@@ -233,7 +233,7 @@ exports.default = (0, util_1.createRule)({
|
|
|
233
233
|
}
|
|
234
234
|
const typeFlag = builtInTypeFlags[nodeCallee.name];
|
|
235
235
|
const scope = context.sourceCode.getScope(node);
|
|
236
|
-
const variable =
|
|
236
|
+
const variable = utils_1.ASTUtils.findVariable(scope, nodeCallee.name);
|
|
237
237
|
if (!!variable?.defs.length ||
|
|
238
238
|
!doesUnderlyingTypeMatchFlag((0, util_1.getConstrainedTypeAtLocation)(services, node.arguments[0]), typeFlag)) {
|
|
239
239
|
return;
|
|
@@ -468,7 +468,7 @@ function isBuiltInBooleanCall(node, context) {
|
|
|
468
468
|
node.callee.name === 'Boolean' &&
|
|
469
469
|
node.arguments[0]) {
|
|
470
470
|
const scope = context.sourceCode.getScope(node);
|
|
471
|
-
const variable =
|
|
471
|
+
const variable = utils_1.ASTUtils.findVariable(scope, node.callee);
|
|
472
472
|
return variable == null || variable.defs.length === 0;
|
|
473
473
|
}
|
|
474
474
|
return false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/eslint-plugin",
|
|
3
|
-
"version": "8.65.1-alpha.
|
|
3
|
+
"version": "8.65.1-alpha.15",
|
|
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/
|
|
53
|
-
"@typescript-eslint/utils": "8.65.1-alpha.
|
|
54
|
-
"@typescript-eslint/visitor-keys": "8.65.1-alpha.
|
|
55
|
-
"@typescript-eslint/
|
|
52
|
+
"@typescript-eslint/scope-manager": "8.65.1-alpha.15",
|
|
53
|
+
"@typescript-eslint/utils": "8.65.1-alpha.15",
|
|
54
|
+
"@typescript-eslint/visitor-keys": "8.65.1-alpha.15",
|
|
55
|
+
"@typescript-eslint/type-utils": "8.65.1-alpha.15"
|
|
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-
|
|
80
|
-
"@typescript-eslint/rule-
|
|
79
|
+
"@typescript-eslint/rule-schema-to-typescript-types": "8.65.1-alpha.15",
|
|
80
|
+
"@typescript-eslint/rule-tester": "8.65.1-alpha.15"
|
|
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.65.1-alpha.
|
|
85
|
+
"@typescript-eslint/parser": "^8.65.1-alpha.15"
|
|
86
86
|
},
|
|
87
87
|
"funding": {
|
|
88
88
|
"type": "opencollective",
|