forked from microsoft/vscode-pull-request-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettingKeys.ts
More file actions
26 lines (24 loc) · 1.27 KB
/
Copy pathsettingKeys.ts
File metadata and controls
26 lines (24 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
export const PR_SETTINGS_NAMESPACE = 'githubPullRequests';
export const TERMINAL_LINK_HANDLER = 'terminalLinksHandler';
export const BRANCH_PUBLISH = 'createOnPublishBranch';
export const USE_REVIEW_MODE = 'useReviewMode';
export const FILE_LIST_LAYOUT = 'fileListLayout';
export const ASSIGN_TO = 'assignCreated';
export const PUSH_BRANCH = 'pushBranch';
export const IGNORE_PR_BRANCHES = 'ignoredPullRequestBranches';
export const OVERRIDE_DEFAULT_BRANCH = 'overrideDefaultBranch';
export const PULL_BRANCH = 'pullBranch';
export const PULL_REQUEST_DESCRIPTION = 'pullRequestDescription';
export const NOTIFICATION_SETTING = 'notifications';
export const POST_CREATE = 'postCreate';
export const QUERIES = 'queries';
export const FOCUSED_MODE = 'focusedMode';
export const CREATE_DRAFT = 'createDraft';
export const QUICK_DIFF = 'experimental.quickDiff';
// git
export const GIT = 'git';
export const OPEN_DIFF_ON_CLICK = 'openDiffOnClick';