mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
@@ -101,7 +101,11 @@ export class GitSCMProvider {
|
||||
|
||||
// As a mitigation for extensions like ESLint showing warnings and errors
|
||||
// for git URIs, let's change the file extension of these uris to .git.
|
||||
return new Uri().with({ scheme: 'git-original', query: uri.path, path: uri.path + '.git' });
|
||||
return new Uri().with({
|
||||
scheme: 'git-original',
|
||||
query: uri.fsPath,
|
||||
path: uri.path + '.git'
|
||||
});
|
||||
}
|
||||
|
||||
private onDidModelChange(): void {
|
||||
|
||||
Reference in New Issue
Block a user