Skip to content

Commit 2477cb9

Browse files
Copilotmrjf
andauthored
fix: break long lines in frame.ts and series.ts to pass Biome format check
Agent-Logs-Url: https://github.com/githubnext/tsessebe/sessions/843bf80c-7ccd-4e72-9954-5b0d915eb528 Co-authored-by: mrjf <[email protected]>
1 parent 0dd35a6 commit 2477cb9

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

src/core/frame.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,9 @@ function isIndexLike(v: unknown): v is Index<Label> {
779779
}
780780
const rec = v as Record<string, unknown>;
781781
return (
782-
typeof rec["size"] === "number" && typeof rec["at"] === "function" && typeof rec["getLoc"] === "function"
782+
typeof rec["size"] === "number" &&
783+
typeof rec["at"] === "function" &&
784+
typeof rec["getLoc"] === "function"
783785
);
784786
}
785787

src/core/series.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,6 +1036,8 @@ function isIndexLike(v: unknown): v is Index<Label> {
10361036
}
10371037
const rec = v as Record<string, unknown>;
10381038
return (
1039-
typeof rec["size"] === "number" && typeof rec["at"] === "function" && typeof rec["getLoc"] === "function"
1039+
typeof rec["size"] === "number" &&
1040+
typeof rec["at"] === "function" &&
1041+
typeof rec["getLoc"] === "function"
10401042
);
10411043
}

0 commit comments

Comments
 (0)