Skip to content

Commit 954e18a

Browse files
committed
Format files with prettier
1 parent ff499dd commit 954e18a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/components/Messages/ToolMessage.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ function isFileReadTool(toolName: string, args: unknown): args is FileReadToolAr
4545
return TOOL_DEFINITIONS.file_read.schema.safeParse(args).success;
4646
}
4747

48-
49-
5048
function isFileEditReplaceStringTool(
5149
toolName: string,
5250
args: unknown

src/services/tools/file_list.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ describe("file_list tool", () => {
4949
expect(result.output).toContain("subdir/");
5050
expect(result.output).toContain("file1.txt");
5151
expect(result.output).toContain("file2.txt");
52-
52+
5353
// Check sorting: directories first (subdir appears before files in output)
5454
expect(result.output.indexOf("subdir/")).toBeLessThan(result.output.indexOf("file1.txt"));
5555
});
@@ -76,7 +76,7 @@ describe("file_list tool", () => {
7676
expect(result.output).toContain("dir1/");
7777
expect(result.output).toContain("file1.txt");
7878
expect(result.output).toContain("root.txt");
79-
79+
8080
// Check indentation shows nesting (file1.txt should be indented under dir1)
8181
expect(result.output).toMatch(/dir1\/\s*\n.*file1\.txt/);
8282
});

0 commit comments

Comments
 (0)