Skip to content

Commit 95894fa

Browse files
chore: remove httpHeaders from expected config
1 parent 2e319e4 commit 95894fa

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/common/config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,19 @@ const OPTIONS = {
9494
"greedy-arrays": true,
9595
"short-option-groups": false,
9696
},
97-
object: ["httpHeaders"],
9897
} as Readonly<Options>;
9998

10099
interface Options {
101100
string: string[];
102101
boolean: string[];
103102
array: string[];
104-
object: string[];
105103
alias: Record<string, string>;
106104
configuration: Record<string, boolean>;
107105
}
108106

109107
export const ALL_CONFIG_KEYS = new Set(
110108
(OPTIONS.string as readonly string[])
111109
.concat(OPTIONS.array)
112-
.concat(OPTIONS.object)
113110
.concat(OPTIONS.boolean)
114111
.concat(Object.keys(OPTIONS.alias))
115112
);

0 commit comments

Comments
 (0)