Skip to content

Commit f7351f3

Browse files
chore(deps): update dependency @types/eslint-scope to v8 (#829)
* chore(deps): update dependency @types/eslint-scope to v8 * fix type --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yosuke Ota <[email protected]>
1 parent a3be44b commit f7351f3

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

lib/utils/ast-utils/extract-expression-references.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import type { Rule } from "eslint"
2-
import type { Variable } from "eslint-scope"
1+
import type { Rule, Scope } from "eslint"
32
import type {
43
ArrayPattern,
54
ArrowFunctionExpression,
@@ -66,7 +65,7 @@ export type ExpressionReference =
6665
}
6766

6867
type AlreadyChecked = {
69-
variables: Set<Variable>
68+
variables: Set<Scope.Variable>
7069
functions: Map<
7170
FunctionDeclaration | FunctionExpression | ArrowFunctionExpression,
7271
Set<number>

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"@types/chai": "^5.0.0",
7575
"@types/eslint": "^9.0.0",
7676
"@types/eslint__eslintrc": "^2.1.1",
77-
"@types/eslint-scope": "^3.7.1",
77+
"@types/eslint-scope": "^8.0.0",
7878
"@types/estree": "^1.0.6",
7979
"@types/mocha": "^10.0.0",
8080
"@types/node": "^22.0.0",

0 commit comments

Comments
 (0)