We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b11570a commit a72cb35Copy full SHA for a72cb35
1 file changed
packages/opencode/src/config/config.ts
@@ -85,6 +85,7 @@ function stripUnknownKeys(data: unknown): unknown {
85
const result: Record<string, unknown> = {}
86
for (const [key, value] of Object.entries(data)) {
87
if (infoKeys.has(key)) result[key] = value
88
+ else log.warn("config key is not recognized and will be ignored", { key })
89
}
90
return result
91
0 commit comments