Skip to content

Commit

Permalink
fix(config): update deprecated config type
Browse files Browse the repository at this point in the history
  • Loading branch information
nostrorom committed Dec 3, 2024
1 parent 496ecf6 commit 3738f37
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ declare const plugin: {
marko: Linter.LegacyConfig;
react: Linter.LegacyConfig;
vue: Linter.LegacyConfig;
'flat/angular': Linter.FlatConfig;
'flat/dom': Linter.FlatConfig;
'flat/marko': Linter.FlatConfig;
'flat/react': Linter.FlatConfig;
'flat/vue': Linter.FlatConfig;
'flat/angular': Linter.Config<Linter.RulesRecord>;
'flat/dom': Linter.Config<Linter.RulesRecord>;
'flat/marko': Linter.Config<Linter.RulesRecord>;
'flat/react': Linter.Config<Linter.RulesRecord>;
'flat/vue': Linter.Config<Linter.RulesRecord>;
};
rules: {
[key: string]: Rule.RuleModule;
Expand Down

0 comments on commit 3738f37

Please sign in to comment.