Skip to content

Commit d1de833

Browse files
committed
Try to reproduce #3294
1 parent ba2019e commit d1de833

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

src/commands.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55
'use strict';
66

7+
78
import * as pathLib from 'path';
89
import * as vscode from 'vscode';
910
import { GitErrorCodes } from './api/api1';

src/commentHandlerResolver.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55
'use strict';
66

7+
78
import * as vscode from 'vscode';
89
import Logger from './common/logger';
910
import { GHPRComment, GHPRCommentThread, TemporaryComment } from './github/prComment';

src/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6+
67
export const EXTENSION_ID = 'GitHub.vscode-pull-request-github';
78
export const VSLS_REQUEST_NAME = 'git';
89
export const VSLS_GIT_PR_SESSION_NAME = 'ghpr';

src/experimentationService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6+
67
import * as vscode from 'vscode';
78
import TelemetryReporter from 'vscode-extension-telemetry';
89
import {

src/extension.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6+
67
'use strict';
78
import * as vscode from 'vscode';
89
import TelemetryReporter from 'vscode-extension-telemetry';

src/extensionState.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import * as vscode from 'vscode';
66
import { IAccount } from './github/interface';
77

8+
89
// Synced keys
910
export const NEVER_SHOW_PULL_NOTIFICATION = 'github.pullRequest.pullNotification.show';
1011

src/gitExtensionIntegration.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { RemoteSource, RemoteSourceProvider } from './@types/git';
77
import { OctokitCommon } from './github/common';
88
import { AuthProvider, CredentialStore, GitHub } from './github/credentials';
99

10+
1011
interface Repository {
1112
readonly full_name: string;
1213
readonly description: string | null;

src/gitProviders/builtinGit.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export class BuiltinGitProvider implements IGit, vscode.Disposable {
1212
return this._gitAPI.repositories as any[];
1313
}
1414

15+
1516
get state(): APIState {
1617
return this._gitAPI.state;
1718
}

src/gitProviders/vslshost.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import {
1313
VSLS_STATE_CHANGE_NOTIFY_NAME,
1414
} from '../constants';
1515

16+
1617
export class VSLSHost implements vscode.Disposable {
1718
private _sharedService?: SharedService;
1819
private _disposables: vscode.Disposable[];

0 commit comments

Comments
 (0)