@typescript-eslint/experimental-utils 5.8.0 → 5.8.1-alpha.0
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/package.json +4 -4
- package/_ts3.4/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +0 -48
- package/_ts3.4/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +0 -76
- package/_ts3.4/dist/ast-utils/eslint-utils/astUtilities.d.ts +0 -76
- package/_ts3.4/dist/ast-utils/eslint-utils/index.d.ts +0 -6
- package/_ts3.4/dist/ast-utils/eslint-utils/predicates.d.ts +0 -32
- package/_ts3.4/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +0 -18
- package/_ts3.4/dist/ast-utils/helpers.d.ts +0 -18
- package/_ts3.4/dist/ast-utils/index.d.ts +0 -4
- package/_ts3.4/dist/ast-utils/misc.d.ts +0 -8
- package/_ts3.4/dist/ast-utils/predicates.d.ts +0 -180
- package/_ts3.4/dist/eslint-utils/InferTypesFromRule.d.ts +0 -11
- package/_ts3.4/dist/eslint-utils/RuleCreator.d.ts +0 -35
- package/_ts3.4/dist/eslint-utils/RuleTester.d.ts +0 -18
- package/_ts3.4/dist/eslint-utils/applyDefault.d.ts +0 -10
- package/_ts3.4/dist/eslint-utils/batchedSingleLineTests.d.ts +0 -24
- package/_ts3.4/dist/eslint-utils/deepMerge.d.ts +0 -17
- package/_ts3.4/dist/eslint-utils/getParserServices.d.ts +0 -8
- package/_ts3.4/dist/eslint-utils/index.d.ts +0 -8
- package/_ts3.4/dist/index.d.ts +0 -8
- package/_ts3.4/dist/json-schema.d.ts +0 -2
- package/_ts3.4/dist/ts-eslint/AST.d.ts +0 -9
- package/_ts3.4/dist/ts-eslint/CLIEngine.d.ts +0 -137
- package/_ts3.4/dist/ts-eslint/ESLint.d.ts +0 -341
- package/_ts3.4/dist/ts-eslint/Linter.d.ts +0 -326
- package/_ts3.4/dist/ts-eslint/ParserOptions.d.ts +0 -2
- package/_ts3.4/dist/ts-eslint/Rule.d.ts +0 -390
- package/_ts3.4/dist/ts-eslint/RuleTester.d.ts +0 -152
- package/_ts3.4/dist/ts-eslint/Scope.d.ts +0 -44
- package/_ts3.4/dist/ts-eslint/SourceCode.d.ts +0 -343
- package/_ts3.4/dist/ts-eslint/index.d.ts +0 -10
- package/_ts3.4/dist/ts-eslint-scope/Definition.d.ts +0 -19
- package/_ts3.4/dist/ts-eslint-scope/Options.d.ts +0 -15
- package/_ts3.4/dist/ts-eslint-scope/PatternVisitor.d.ts +0 -25
- package/_ts3.4/dist/ts-eslint-scope/Reference.d.ts +0 -28
- package/_ts3.4/dist/ts-eslint-scope/Referencer.d.ts +0 -55
- package/_ts3.4/dist/ts-eslint-scope/Scope.d.ts +0 -103
- package/_ts3.4/dist/ts-eslint-scope/ScopeManager.d.ts +0 -50
- package/_ts3.4/dist/ts-eslint-scope/Variable.d.ts +0 -17
- package/_ts3.4/dist/ts-eslint-scope/analyze.d.ts +0 -16
- package/_ts3.4/dist/ts-eslint-scope/index.d.ts +0 -11
- package/_ts3.4/dist/ts-estree.d.ts +0 -3
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { EcmaVersion } from '../ts-eslint';
|
|
2
|
-
import { TSESTree } from '../ts-estree';
|
|
3
|
-
import { ScopeManager } from './ScopeManager';
|
|
4
|
-
interface AnalysisOptions {
|
|
5
|
-
optimistic?: boolean;
|
|
6
|
-
directive?: boolean;
|
|
7
|
-
ignoreEval?: boolean;
|
|
8
|
-
nodejsScope?: boolean;
|
|
9
|
-
impliedStrict?: boolean;
|
|
10
|
-
fallback?: string | ((node: TSESTree.Node) => string[]);
|
|
11
|
-
sourceType?: 'script' | 'module';
|
|
12
|
-
ecmaVersion?: EcmaVersion;
|
|
13
|
-
}
|
|
14
|
-
declare const analyze: (ast: TSESTree.Node, options?: AnalysisOptions | undefined) => ScopeManager;
|
|
15
|
-
export { analyze, AnalysisOptions };
|
|
16
|
-
//# sourceMappingURL=analyze.d.ts.map
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from './analyze';
|
|
2
|
-
export * from './Definition';
|
|
3
|
-
export * from './Options';
|
|
4
|
-
export * from './PatternVisitor';
|
|
5
|
-
export * from './Reference';
|
|
6
|
-
export * from './Referencer';
|
|
7
|
-
export * from './Scope';
|
|
8
|
-
export * from './ScopeManager';
|
|
9
|
-
export * from './Variable';
|
|
10
|
-
export declare const version: string;
|
|
11
|
-
//# sourceMappingURL=index.d.ts.map
|