Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix!: remove deprecated nodeType property
  • Loading branch information
Pixel998 committed Sep 9, 2025
commit d4c3825def0351a87dda17444ec618bf2434c8aa
12 changes: 0 additions & 12 deletions packages/core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -484,12 +484,6 @@ type RuleFixer = (
) => RuleTextEdit | Iterable<RuleTextEdit> | null;

interface ViolationReportBase {
/**
* The type of node that the violation is for.
* @deprecated May be removed in the future.
*/
nodeType?: string | undefined;

/**
* The data to insert into the message.
*/
Expand Down Expand Up @@ -581,12 +575,6 @@ export interface LintMessage {
/** The ID of the message in the rule's meta. */
messageId?: string | undefined;

/**
* Type of node.
* @deprecated `nodeType` is deprecated and will be removed in the next major version.
*/
nodeType?: string | undefined;

/** If `true` then this is a fatal error. */
fatal?: true | undefined;

Expand Down
Loading