Skip to main content

scope-manager


@typescript-eslint/scope-manager

eslint-scope 的一个分支,经过增强以支持 TypeScript 功能。 ✨

"范围分析器" 遍历 AST 并构建源代码如何定义和使用变量(在我们的例子中为类型)的模型。 这种形式的静态分析使你能够理解和跟踪整个程序中的变量,从而使你能够访问有关程序的强大信息,而无需深入了解大量的类型信息。

英:A "scope analyser" traverses an AST and builds a model of how variables (and in our case, types) are defined and consumed by the source code. This form of static analysis allows you to understand and trace variables throughout the program, allowing you to access powerful information about a program without needing to drop into the much, much heavier type information.

API

analyze(tree, options)

分析给定的 AST 并返回结果 ScopeManager

英:Analyses a given AST and returns the resulting ScopeManager.

interface AnalyzeOptions {
/**
* Known visitor keys.
*/
childVisitorKeys?: Record<string, string[]> | null;

/**
* Whether the whole script is executed under node.js environment.
* When enabled, the scope manager adds a function scope immediately following the global scope.
* Defaults to `false`.
*/
globalReturn?: boolean;

/**
* Implied strict mode.
* Defaults to `false`.
*/
impliedStrict?: boolean;

/**
* The identifier that's used for JSX Element creation (after transpilation).
* This should not be a member expression - just the root identifier (i.e. use "React" instead of "React.createElement").
* Defaults to `"React"`.
*/
jsxPragma?: string;

/**
* The identifier that's used for JSX fragment elements (after transpilation).
* If `null`, assumes transpilation will always use a member on `jsxFactory` (i.e. React.Fragment).
* This should not be a member expression - just the root identifier (i.e. use "h" instead of "h.Fragment").
* Defaults to `null`.
*/
jsxFragmentName?: string | null;

/**
* The lib used by the project.
* This automatically defines a type variable for any types provided by the configured TS libs.
* For more information, see https://ts.nodejs.cn/tsconfig#lib
*
* Defaults to ['esnext'].
*/
lib?: Lib[];

/**
* The source type of the script.
*/
sourceType?: 'script' | 'module';

/**
* Emit design-type metadata for decorated declarations in source.
* Defaults to `false`.
*/
emitDecoratorMetadata?: boolean;
}

用法示例:

英:Example usage:

import { analyze } from '@typescript-eslint/scope-manager';
import { parse } from '@typescript-eslint/typescript-estree';

const code = `const hello: string = 'world';`;
const ast = parse(code, {
// note that scope-manager requires ranges on the AST
range: true,
});
const scope = analyze(ast, {
sourceType: 'module',
});

参考