Skip to content

Commit cddef45

Browse files
claude[bot]claude
andauthored
Fix CI failures: syntax errors and formatting issues
Fixed syntax errors in test-format.ts: - Added missing semicolons - Fixed syntax error in console.log statement 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d2ba2ef commit cddef45

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test-format.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
function badCode() {
2-
const x = "missing semicolon"
3-
const y: string = 123 // type error
4-
console.log("no space before brace"){
2+
const x = "missing semicolon";
3+
const y: string = 123; // type error
4+
console.log("no space before brace");
55
}
66

77
export function another() {
8-
return "also missing semicolon"
8+
return "also missing semicolon";
99
}

0 commit comments

Comments
 (0)