Skip to content

Commit 4e79d66

Browse files
committed
fix: formatting
1 parent 31ee135 commit 4e79d66

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

plugins/vscode/src/diff-manager.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,11 @@ export class DiffManager {
9090
/**
9191
* Create a virtual URI for diff content (won't trigger linters)
9292
*/
93-
private createVirtualUri(id: string, type: 'original' | 'modified' | 'new', fileName: string): vscode.Uri {
93+
private createVirtualUri(
94+
id: string,
95+
type: 'original' | 'modified' | 'new',
96+
fileName: string,
97+
): vscode.Uri {
9498
// Include the file extension in the path for syntax highlighting
9599
// but use our custom scheme so linters don't run
96100
return vscode.Uri.parse(`${DIFF_SCHEME}:/${id}/${type}/${fileName}`);

0 commit comments

Comments
 (0)