Skip to content

Commit 6579718

Browse files
committed
lint fixes
1 parent 6add14d commit 6579718

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.claude/settings.local.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"permissions": {
3-
"allow": [
4-
"Bash(pnpm lint:fix:*)",
5-
"Bash(pnpm typecheck:*)",
6-
"Bash(pnpm check:*)"
7-
],
3+
"allow": ["Bash(pnpm lint:fix:*)", "Bash(pnpm typecheck:*)", "Bash(pnpm check:*)"],
84
"deny": [],
95
"ask": []
106
}
11-
}
7+
}

packages/hypergraph/src/messages/serialize.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export function serialize(obj: any): string {
1111
});
1212
}
1313

14+
// biome-ignore lint/suspicious/noExplicitAny: same as stringify and parse
1415
export function serializeV2(obj: any): any {
1516
return JSON.parse(
1617
JSON.stringify(obj, (_key, value) => {

0 commit comments

Comments
 (0)