@typescript-eslint/scope-manager 8.33.2-alpha.7 → 8.33.2-alpha.9
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.
|
@@ -14,19 +14,19 @@ export declare class ESLintScopeVariable extends VariableBase {
|
|
|
14
14
|
writeable?: boolean;
|
|
15
15
|
/**
|
|
16
16
|
* Written to by ESLint.
|
|
17
|
-
* This property is undefined if there are no globals
|
|
18
|
-
* The array of globals
|
|
17
|
+
* This property is undefined if there are no globals comment directives.
|
|
18
|
+
* The array of globals comment directives which defined this global variable in the source code file.
|
|
19
19
|
*/
|
|
20
20
|
eslintExplicitGlobal?: boolean;
|
|
21
21
|
/**
|
|
22
22
|
* Written to by ESLint.
|
|
23
|
-
* The configured value in config files. This can be different from `variable.writeable` if there are globals
|
|
23
|
+
* The configured value in config files. This can be different from `variable.writeable` if there are globals comment directives.
|
|
24
24
|
*/
|
|
25
25
|
eslintImplicitGlobalSetting?: 'readonly' | 'writable';
|
|
26
26
|
/**
|
|
27
27
|
* Written to by ESLint.
|
|
28
28
|
* If this key exists, it is a global variable added by ESLint.
|
|
29
|
-
* If `true`, this global variable was defined by a globals directive
|
|
29
|
+
* If `true`, this global variable was defined by a globals comment directive in the source code file.
|
|
30
30
|
*/
|
|
31
31
|
eslintExplicitGlobalComments?: TSESTree.Comment[];
|
|
32
32
|
}
|
|
@@ -16,19 +16,19 @@ class ESLintScopeVariable extends VariableBase_1.VariableBase {
|
|
|
16
16
|
writeable; // note that this isn't a typo - ESlint uses this spelling here
|
|
17
17
|
/**
|
|
18
18
|
* Written to by ESLint.
|
|
19
|
-
* This property is undefined if there are no globals
|
|
20
|
-
* The array of globals
|
|
19
|
+
* This property is undefined if there are no globals comment directives.
|
|
20
|
+
* The array of globals comment directives which defined this global variable in the source code file.
|
|
21
21
|
*/
|
|
22
22
|
eslintExplicitGlobal;
|
|
23
23
|
/**
|
|
24
24
|
* Written to by ESLint.
|
|
25
|
-
* The configured value in config files. This can be different from `variable.writeable` if there are globals
|
|
25
|
+
* The configured value in config files. This can be different from `variable.writeable` if there are globals comment directives.
|
|
26
26
|
*/
|
|
27
27
|
eslintImplicitGlobalSetting;
|
|
28
28
|
/**
|
|
29
29
|
* Written to by ESLint.
|
|
30
30
|
* If this key exists, it is a global variable added by ESLint.
|
|
31
|
-
* If `true`, this global variable was defined by a globals directive
|
|
31
|
+
* If `true`, this global variable was defined by a globals comment directive in the source code file.
|
|
32
32
|
*/
|
|
33
33
|
eslintExplicitGlobalComments;
|
|
34
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/scope-manager",
|
|
3
|
-
"version": "8.33.2-alpha.
|
|
3
|
+
"version": "8.33.2-alpha.9",
|
|
4
4
|
"description": "TypeScript scope analyser for ESLint",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"typecheck": "yarn run -BT nx typecheck"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@typescript-eslint/types": "8.33.2-alpha.
|
|
52
|
-
"@typescript-eslint/visitor-keys": "8.33.2-alpha.
|
|
51
|
+
"@typescript-eslint/types": "8.33.2-alpha.9",
|
|
52
|
+
"@typescript-eslint/visitor-keys": "8.33.2-alpha.9"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@typescript-eslint/typescript-estree": "8.33.2-alpha.
|
|
55
|
+
"@typescript-eslint/typescript-estree": "8.33.2-alpha.9",
|
|
56
56
|
"@vitest/coverage-v8": "^3.1.3",
|
|
57
57
|
"@vitest/pretty-format": "^3.1.3",
|
|
58
58
|
"glob": "*",
|