Skip to content

Commit 3f34490

Browse files
authored
fix(utils): allow an array for the values of SharedConfig (typescript-eslint#10217)
1 parent d9e5da1 commit 3f34490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/utils/src/ts-eslint/Config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export namespace FlatConfig {
150150
export type SourceType = 'commonjs' | ParserOptionsTypes.SourceType;
151151

152152
export interface SharedConfigs {
153-
[key: string]: Config;
153+
[key: string]: Config | ConfigArray;
154154
}
155155
export interface Plugin {
156156
/**

0 commit comments

Comments
 (0)