|
1 | 1 | import type { JSONSchema4 } from 'json-schema';
|
2 | 2 | import type { Linter, Rule, SourceCode as ESLintSourceCode } from 'eslint';
|
3 |
| -import type { AST } from 'svelte-eslint-parser'; |
| 3 | +import type { AST, StyleContext, SvelteConfig } from 'svelte-eslint-parser'; |
4 | 4 | import type { TSESTree } from '@typescript-eslint/types';
|
5 | 5 | import type { ScopeManager, Scope, Variable } from '@typescript-eslint/scope-manager';
|
6 | 6 | import type { ASTNode, ASTNodeWithParent, ASTNodeListener } from './types-for-node';
|
| 7 | +import type * as TS from 'typescript'; |
7 | 8 |
|
8 | 9 | export type { ASTNode, ASTNodeWithParent, ASTNodeListener };
|
9 | 10 | export interface RuleListener extends ASTNodeListener {
|
@@ -201,7 +202,29 @@ export interface SourceCode {
|
201 | 202 | ast: AST.SvelteProgram;
|
202 | 203 | lines: string[];
|
203 | 204 | hasBOM: boolean;
|
204 |
| - parserServices: ESLintSourceCode.ParserServices; |
| 205 | + parserServices: { |
| 206 | + isSvelte?: boolean; |
| 207 | + isSvelteScript?: boolean; |
| 208 | + getSvelteHtmlAst?: () => unknown; |
| 209 | + getStyleContext?: () => StyleContext; |
| 210 | + svelteParseContext?: { |
| 211 | + /** |
| 212 | + * Whether to use Runes mode. |
| 213 | + * May be `true` if the user is using Svelte v5. |
| 214 | + * Resolved from `svelte.config.js` or `parserOptions`, but may be overridden by `<svelte:options>`. |
| 215 | + */ |
| 216 | + runes?: boolean; |
| 217 | + /** The version of "svelte/compiler". */ |
| 218 | + compilerVersion?: string; |
| 219 | + /** The result of static analysis of `svelte.config.js`. */ |
| 220 | + svelteConfig?: SvelteConfig | null; |
| 221 | + }; |
| 222 | + program?: TS.Program; |
| 223 | + esTreeNodeToTSNodeMap?: ReadonlyMap<unknown, TS.Node>; |
| 224 | + tsNodeToESTreeNodeMap?: ReadonlyMap<TS.Node, ASTNode>; |
| 225 | + hasFullTypeInformation?: boolean; // Old typescript-eslint |
| 226 | + [key: string]: unknown; |
| 227 | + }; |
205 | 228 | scopeManager: ScopeManager;
|
206 | 229 | visitorKeys: ESLintSourceCode.VisitorKeys;
|
207 | 230 |
|
|
0 commit comments