style: apply project formatting

This commit is contained in:
abhijeet117 2026-01-31 19:55:44 +05:30
parent 375c629f28
commit a56435e56c
2 changed files with 6 additions and 6 deletions

View File

@ -1 +1 @@
AGENTS.md
AGENTS.md

View File

@ -199,11 +199,11 @@ function cleanSchemaForGeminiWithDefs(
...(cleaned as Record<string, unknown>),
};
// Preserve all sibling properties except "$ref"
for (const [key, value] of Object.entries(obj)) {
if (key !== "$ref" && value !== undefined) {
result[key] = value;
}
}
for (const [key, value] of Object.entries(obj)) {
if (key !== "$ref" && value !== undefined) {
result[key] = value;
}
}
return result;
}