Skip to content

Commit 274f054

Browse files
authored
fix: fix RuleContext type (#19417)
1 parent 93c78a5 commit 274f054

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

lib/types/index.d.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ import type {
3434
TraversalStep,
3535
LanguageOptions as GenericLanguageOptions,
3636
RuleDefinition,
37-
RuleContext as CoreRuleContext
37+
RuleContext as CoreRuleContext,
38+
RuleContextTypeOptions
3839
} from "@eslint/core";
3940
import { JSONSchema4 } from "json-schema";
4041
import { LegacyESLint } from "./use-at-your-own-risk.js";
@@ -800,7 +801,10 @@ export namespace Rule {
800801
hasSuggestions?: boolean | undefined;
801802
}
802803

803-
interface RuleContext extends CoreRuleContext {
804+
interface RuleContext extends CoreRuleContext<RuleContextTypeOptions & {
805+
LangOptions: Linter.LanguageOptions;
806+
Code: SourceCode;
807+
Node: ESTree.Node; }> {
804808
// report(descriptor: ReportDescriptor): void;
805809
}
806810

tests/lib/types/types.test.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ rule = {
436436
};
437437

438438
rule = {
439-
create(context) {
439+
create(context: Rule.RuleContext) {
440440
context.getAncestors();
441441

442442
context.getDeclaredVariables(AST);
@@ -453,9 +453,14 @@ rule = {
453453

454454
context.getCwd();
455455

456+
context.languageOptions;
457+
context.languageOptions.ecmaVersion satisfies Linter.LanguageOptions["ecmaVersion"];
458+
456459
context.sourceCode;
460+
context.sourceCode.getLocFromIndex(42);
457461

458462
context.getSourceCode();
463+
context.getSourceCode().getLocFromIndex(42);
459464

460465
context.getScope();
461466

@@ -467,6 +472,9 @@ rule = {
467472

468473
context.markVariableAsUsed("foo");
469474

475+
// @ts-expect-error wrong `node` type
476+
context.report({ message: "foo", node: {} });
477+
470478
context.report({ message: "foo", node: AST });
471479
context.report({ message: "foo", loc: { start: {line: 0, column: 0}, end: { line: 1, column: 1 } } });
472480
context.report({ message: "foo", node: AST, data: { foo: "bar" } });

0 commit comments

Comments
 (0)