Skip to content

Commit c37d37e

Browse files
committed
refactor: update rules meta typing to match eslint@9.36.0
1 parent 08dac59 commit c37d37e

File tree

1 file changed

+1
-1
lines changed
  • packages/lint-eslint-config-rules/src

1 file changed

+1
-1
lines changed

packages/lint-eslint-config-rules/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const defaultCwd = process.cwd();
1515
export type ESLintRuleId = string;
1616
export interface IESLintRule {
1717
id: ESLintRuleId;
18-
meta: Rule.RuleMetaData | undefined;
18+
meta?: Rule.RuleModule['meta'];
1919
}
2020
export type ESLintRuleMap = Map<ESLintRuleId, IESLintRule>;
2121

0 commit comments

Comments
 (0)