-
Notifications
You must be signed in to change notification settings - Fork 740
Test PR created from a fork #3509
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 8 commits
d1de833
bea2785
4c0c95c
67e7726
0e23d56
d2771f6
a2cc75f
2e2e0a3
57a0470
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4,7 +4,12 @@ | |||||||||||
| *--------------------------------------------------------------------------------------------*/ | ||||||||||||
| 'use strict'; | ||||||||||||
|
|
||||||||||||
|
|
||||||||||||
|
|
||||||||||||
|
|
||||||||||||
| import * as vscode from 'vscode'; | ||||||||||||
|
|
||||||||||||
|
|
||||||||||||
|
Comment on lines
+7
to
+12
|
||||||||||||
| import * as vscode from 'vscode'; | |
| import * as vscode from 'vscode'; |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -3,9 +3,16 @@ | |||||||||||||||||||||||||||||
| * Licensed under the MIT License. See License.txt in the project root for license information. | ||||||||||||||||||||||||||||||
| *--------------------------------------------------------------------------------------------*/ | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| export const EXTENSION_ID = 'GitHub.vscode-pull-request-github'; | ||||||||||||||||||||||||||||||
| export const VSLS_REQUEST_NAME = 'git'; | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| export const VSLS_GIT_PR_SESSION_NAME = 'ghpr'; | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| export const VSLS_REPOSITORY_INITIALIZATION_NAME = 'initialize'; | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
Comment on lines
+6
to
+16
|
||||||||||||||||||||||||||||||
| export const EXTENSION_ID = 'GitHub.vscode-pull-request-github'; | |
| export const VSLS_REQUEST_NAME = 'git'; | |
| export const VSLS_GIT_PR_SESSION_NAME = 'ghpr'; | |
| export const VSLS_REPOSITORY_INITIALIZATION_NAME = 'initialize'; | |
| export const EXTENSION_ID = 'GitHub.vscode-pull-request-github'; | |
| export const VSLS_REQUEST_NAME = 'git'; | |
| export const VSLS_GIT_PR_SESSION_NAME = 'ghpr'; | |
| export const VSLS_REPOSITORY_INITIALIZATION_NAME = 'initialize'; |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -3,21 +3,28 @@ | |||
| * Licensed under the MIT License. See License.txt in the project root for license information. | ||||
| *--------------------------------------------------------------------------------------------*/ | ||||
|
|
||||
|
|
||||
|
|
||||
| import * as vscode from 'vscode'; | ||||
| import TelemetryReporter from 'vscode-extension-telemetry'; | ||||
| import { | ||||
| getExperimentationService, | ||||
| IExperimentationService, | ||||
| IExperimentationTelemetry, | ||||
| TargetPopulation, | ||||
|
|
||||
|
||||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -3,16 +3,20 @@ | |||
| * Licensed under the MIT License. See License.txt in the project root for license information. | ||||
| *--------------------------------------------------------------------------------------------*/ | ||||
|
|
||||
|
|
||||
|
|
||||
|
Comment on lines
5
to
+7
|
||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -3,7 +3,10 @@ | |||||||||||||||
| * Licensed under the MIT License. See License.txt in the project root for license information. | ||||||||||||||||
| *--------------------------------------------------------------------------------------------*/ | ||||||||||||||||
| import * as vscode from 'vscode'; | ||||||||||||||||
| import { IAccount } from './github/interface'; | ||||||||||||||||
| import | ||||||||||||||||
| { IAccount } from './github/interface'; | ||||||||||||||||
|
|
||||||||||||||||
|
|
||||||||||||||||
|
|
||||||||||||||||
|
Comment on lines
+6
to
10
|
||||||||||||||||
| import | |
| { IAccount } from './github/interface'; | |
| import { IAccount } from './github/interface'; | |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -12,6 +12,7 @@ interface Repository { | |||
| readonly description: string | null; | ||||
| readonly clone_url: string; | ||||
| readonly ssh_url: string; | ||||
|
|
||||
|
||||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -12,10 +12,17 @@ export class BuiltinGitProvider implements IGit, vscode.Disposable { | |||
| return this._gitAPI.repositories as any[]; | ||||
| } | ||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
| get state(): APIState { | ||||
| return this._gitAPI.state; | ||||
|
|
||||
|
|
||||
|
Comment on lines
+20
to
+21
|
||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -11,15 +11,21 @@ import { | |||||
| VSLS_REPOSITORY_INITIALIZATION_NAME, | ||||||
| VSLS_REQUEST_NAME, | ||||||
| VSLS_STATE_CHANGE_NOTIFY_NAME, | ||||||
|
|
||||||
|
|
||||||
|
Comment on lines
+14
to
+15
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Several consecutive blank lines were inserted after
'use strict';and between imports. Please reformat with Prettier to keep spacing consistent and avoid unnecessary diff churn.