We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbc0667 commit 561c218Copy full SHA for 561c218
biome.json
@@ -1,5 +1,5 @@
1
{
2
- "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
+ "$schema": "https://biomejs.dev/schemas/2.4.2/schema.json",
3
"assist": {
4
"actions": {
5
"source": {
tools/schema-validate.ts
@@ -49,7 +49,7 @@ export function registerSchemaValidateTool(
49
)
50
51
// Handle error responses from BM (e.g., no schema found)
52
- const resultRecord = result as Record<string, unknown>
+ const resultRecord = result as unknown as Record<string, unknown>
53
if ("error" in result && typeof resultRecord.error === "string") {
54
return {
55
content: [{ type: "text" as const, text: resultRecord.error }],
0 commit comments