Skip to content

Commit cabd068

Browse files
fix: add missing semicolons in VSCode extension
- Fix missing semicolons in comment.ts syntax definitions - Ensure proper TypeScript syntax compliance
1 parent bda8683 commit cabd068

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

editors/vscode/src/syntax/comment.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const comment = {
99
},
1010
comment: 'Comments',
1111
match: '\\s*((#).*)$',
12-
}
12+
};
1313

1414
export const commentDirective = {
1515
captures: {
@@ -22,5 +22,5 @@ export const commentDirective = {
2222
},
2323
comment: 'Comments',
2424
match: '\\s*((#):.*)$',
25-
}
25+
};
2626

0 commit comments

Comments
 (0)