forked from gitkraken/vscode-gitlens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
896 lines (851 loc) · 25.4 KB
/
config.ts
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
import type { AnthropicModels } from './ai/anthropicProvider';
import type { GeminiModels } from './ai/geminiProvider';
import type { OpenAIModels } from './ai/openaiProvider';
import type { AIProviders } from './constants';
import type { ResourceDescriptor } from './plus/integrations/integration';
import type { DateTimeFormat } from './system/date';
import type { LogLevel } from './system/logger.constants';
export interface Config {
readonly ai: {
readonly experimental: {
readonly anthropic: {
readonly model: AnthropicModels | null;
};
readonly gemini: {
readonly model: GeminiModels | null;
};
readonly generateCommitMessage: {
readonly enabled: boolean;
};
readonly openai: {
readonly model: OpenAIModels | null;
readonly url: string | null;
};
readonly provider: AIProviders | null;
};
};
readonly autolinks: AutolinkReference[] | null;
readonly blame: {
readonly avatars: boolean;
readonly compact: boolean;
readonly dateFormat: DateTimeFormat | (string & object) | null;
readonly fontFamily: string;
readonly fontSize: number;
readonly fontWeight: string;
readonly format: string;
readonly heatmap: {
readonly enabled: boolean;
readonly location: 'left' | 'right';
};
readonly highlight: {
readonly enabled: boolean;
readonly locations: BlameHighlightLocations[];
};
readonly ignoreWhitespace: boolean;
readonly separateLines: boolean;
/*readonly*/ toggleMode: AnnotationsToggleMode;
};
readonly changes: {
readonly locations: ChangesLocations[];
/*readonly*/ toggleMode: AnnotationsToggleMode;
};
readonly cloudPatches: {
readonly enabled: boolean;
readonly experimental: {
readonly layout: 'editor' | 'view';
};
};
readonly codeLens: CodeLensConfig;
readonly currentLine: {
readonly dateFormat: string | null;
/*readonly*/ enabled: boolean;
readonly format: string;
readonly uncommittedChangesFormat: string | null;
readonly pullRequests: {
readonly enabled: boolean;
};
readonly scrollable: boolean;
};
readonly debug: boolean;
readonly deepLinks: {
readonly schemeOverride: boolean | string | null;
};
readonly defaultDateFormat: DateTimeFormat | (string & object) | null;
readonly defaultDateLocale: string | null;
readonly defaultDateShortFormat: DateTimeFormat | (string & object) | null;
readonly defaultDateSource: DateSource;
readonly defaultDateStyle: DateStyle;
readonly defaultGravatarsStyle: GravatarDefaultStyle;
readonly defaultTimeFormat: DateTimeFormat | (string & object) | null;
readonly detectNestedRepositories: boolean;
readonly experimental: {
readonly generateCommitMessagePrompt: string;
};
readonly fileAnnotations: {
readonly preserveWhileEditing: boolean;
readonly command: string | null;
readonly dismissOnEscape: boolean;
};
readonly launchpad: {
readonly allowMultiple: boolean;
readonly ignoredRepositories: string[];
readonly staleThreshold: number | null;
readonly indicator: {
readonly enabled: boolean;
readonly openInEditor: boolean;
readonly icon: 'default' | 'group';
readonly label: false | 'item';
readonly useColors: boolean;
readonly groups: ('mergeable' | 'blocked' | 'needs-review' | 'follow-up')[];
readonly polling: {
enabled: boolean;
interval: number;
};
};
};
readonly gitCommands: {
readonly avatars: boolean;
readonly closeOnFocusOut: boolean;
readonly search: {
readonly matchAll: boolean;
readonly matchCase: boolean;
readonly matchRegex: boolean;
readonly showResultsInSideBar: boolean | null;
};
readonly skipConfirmations: string[];
readonly sortBy: GitCommandSorting;
};
readonly gitKraken: {
readonly activeOrganizationId: string | null;
};
readonly graph: GraphConfig;
readonly heatmap: {
readonly ageThreshold: number;
readonly coldColor: string;
readonly hotColor: string;
readonly fadeLines: boolean;
readonly locations: HeatmapLocations[];
/*readonly*/ toggleMode: AnnotationsToggleMode;
};
readonly hovers: {
readonly annotations: {
readonly changes: boolean;
readonly details: boolean;
readonly enabled: boolean;
readonly over: 'line' | 'annotation';
};
readonly autolinks: {
readonly enabled: boolean;
readonly enhanced: boolean;
};
readonly currentLine: {
readonly changes: boolean;
readonly details: boolean;
readonly enabled: boolean;
readonly over: 'line' | 'annotation';
};
readonly avatars: boolean;
readonly avatarSize: number;
readonly changesDiff: 'line' | 'hunk';
readonly detailsMarkdownFormat: string;
/*readonly*/ enabled: boolean;
readonly pullRequests: {
readonly enabled: boolean;
};
};
readonly integrations: {
readonly enabled: boolean;
};
readonly keymap: KeyMap;
readonly liveshare: {
readonly enabled: boolean;
readonly allowGuestAccess: boolean;
};
readonly menus: boolean | MenuConfig;
readonly mode: {
readonly active: string;
readonly statusBar: {
readonly enabled: boolean;
readonly alignment: 'left' | 'right';
};
};
readonly modes: Record<string, ModeConfig> | null;
readonly outputLevel: OutputLevel;
readonly partners: Record<
string,
{
readonly enabled: boolean;
readonly [key: string]: any;
}
> | null;
readonly plusFeatures: {
readonly enabled: boolean;
};
readonly proxy: {
readonly url: string | null;
readonly strictSSL: boolean;
} | null;
readonly rebaseEditor: {
readonly ordering: 'asc' | 'desc';
readonly showDetailsView: 'open' | 'selection' | false;
};
readonly remotes: RemotesConfig[] | null;
readonly showWelcomeOnInstall: boolean;
readonly showWhatsNewAfterUpgrades: boolean;
readonly sortBranchesBy: BranchSorting;
readonly sortContributorsBy: ContributorSorting;
readonly sortTagsBy: TagSorting;
readonly sortRepositoriesBy: RepositoriesSorting;
readonly statusBar: {
readonly alignment: 'left' | 'right';
readonly command: StatusBarCommand;
readonly dateFormat: DateTimeFormat | (string & object) | null;
/*readonly*/ enabled: boolean;
readonly format: string;
readonly reduceFlicker: boolean;
readonly pullRequests: {
readonly enabled: boolean;
};
readonly tooltipFormat: string;
};
readonly strings: {
readonly codeLens: {
readonly unsavedChanges: {
readonly recentChangeAndAuthors: string;
readonly recentChangeOnly: string;
readonly authorsOnly: string;
};
};
};
readonly telemetry: {
readonly enabled: boolean;
};
readonly terminal: {
readonly overrideGitEditor: boolean;
};
readonly terminalLinks: {
readonly enabled: boolean;
readonly showDetailsView: boolean;
};
readonly views: ViewsConfig;
readonly virtualRepositories: {
readonly enabled: boolean;
};
readonly visualHistory: {
readonly allowMultiple: boolean;
readonly queryLimit: number;
};
readonly worktrees: {
readonly defaultLocation: string | null;
readonly openAfterCreate: 'always' | 'alwaysNewWindow' | 'onlyWhenEmpty' | 'never' | 'prompt';
readonly promptForLocation: boolean;
};
readonly advanced: AdvancedConfig;
}
export type AnnotationsToggleMode = 'file' | 'window';
export type AutolinkType = 'issue' | 'pullrequest';
export interface AutolinkReference {
readonly prefix: string;
readonly url: string;
readonly title?: string;
readonly alphanumeric?: boolean;
readonly ignoreCase?: boolean;
readonly type?: AutolinkType;
readonly description?: string;
readonly descriptor?: ResourceDescriptor;
}
export type BlameHighlightLocations = 'gutter' | 'line' | 'overview';
export type BranchSorting = 'date:desc' | 'date:asc' | 'name:asc' | 'name:desc';
export type ChangesLocations = 'gutter' | 'line' | 'overview';
export const enum CodeLensCommand {
CopyRemoteCommitUrl = 'gitlens.copyRemoteCommitUrl',
CopyRemoteFileUrl = 'gitlens.copyRemoteFileUrl',
DiffWithPrevious = 'gitlens.diffWithPrevious',
OpenCommitOnRemote = 'gitlens.openCommitOnRemote',
OpenFileOnRemote = 'gitlens.openFileOnRemote',
RevealCommitInView = 'gitlens.revealCommitInView',
ShowCommitsInView = 'gitlens.showCommitsInView',
ShowQuickCommitDetails = 'gitlens.showQuickCommitDetails',
ShowQuickCommitFileDetails = 'gitlens.showQuickCommitFileDetails',
ShowQuickCurrentBranchHistory = 'gitlens.showQuickRepoHistory',
ShowQuickFileHistory = 'gitlens.showQuickFileHistory',
ToggleFileBlame = 'gitlens.toggleFileBlame',
ToggleFileChanges = 'gitlens.toggleFileChanges',
ToggleFileChangesOnly = 'gitlens.toggleFileChangesOnly',
ToggleFileHeatmap = 'gitlens.toggleFileHeatmap',
}
export type CodeLensScopes = 'document' | 'containers' | 'blocks';
export type ContributorSorting = 'count:desc' | 'count:asc' | 'date:desc' | 'date:asc' | 'name:asc' | 'name:desc';
export type RepositoriesSorting = 'discovered' | 'lastFetched:desc' | 'lastFetched:asc' | 'name:asc' | 'name:desc';
export type CustomRemoteType =
| 'AzureDevOps'
| 'Bitbucket'
| 'BitbucketServer'
| 'Custom'
| 'Gerrit'
| 'GoogleSource'
| 'Gitea'
| 'GitHub'
| 'GitLab';
export type DateSource = 'authored' | 'committed';
export type DateStyle = 'absolute' | 'relative';
export type FileAnnotationType = 'blame' | 'changes' | 'heatmap';
export type GitCommandSorting = 'name' | 'usage';
export type GraphScrollMarkersAdditionalTypes = 'localBranches' | 'remoteBranches' | 'stashes' | 'tags';
export type GraphMinimapMarkersAdditionalTypes = 'localBranches' | 'remoteBranches' | 'stashes' | 'tags';
export type GravatarDefaultStyle = 'wavatar' | 'identicon' | 'monsterid' | 'mp' | 'retro' | 'robohash';
export type HeatmapLocations = 'gutter' | 'line' | 'overview';
export type KeyMap = 'alternate' | 'chorded' | 'none';
type DeprecatedOutputLevel =
| /** @deprecated use `off` */ 'silent'
| /** @deprecated use `error` */ 'errors'
| /** @deprecated use `info` */ 'verbose';
export type OutputLevel = LogLevel | DeprecatedOutputLevel;
export const enum StatusBarCommand {
CopyRemoteCommitUrl = 'gitlens.copyRemoteCommitUrl',
CopyRemoteFileUrl = 'gitlens.copyRemoteFileUrl',
DiffWithPrevious = 'gitlens.diffWithPrevious',
DiffWithWorking = 'gitlens.diffWithWorking',
OpenCommitOnRemote = 'gitlens.openCommitOnRemote',
OpenFileOnRemote = 'gitlens.openFileOnRemote',
RevealCommitInView = 'gitlens.revealCommitInView',
ShowCommitsInView = 'gitlens.showCommitsInView',
ShowQuickCommitDetails = 'gitlens.showQuickCommitDetails',
ShowQuickCommitFileDetails = 'gitlens.showQuickCommitFileDetails',
ShowQuickCurrentBranchHistory = 'gitlens.showQuickRepoHistory',
ShowQuickFileHistory = 'gitlens.showQuickFileHistory',
ToggleCodeLens = 'gitlens.toggleCodeLens',
ToggleFileBlame = 'gitlens.toggleFileBlame',
ToggleFileChanges = 'gitlens.toggleFileChanges',
ToggleFileChangesOnly = 'gitlens.toggleFileChangesOnly',
ToggleFileHeatmap = 'gitlens.toggleFileHeatmap',
}
export type TagSorting = 'date:desc' | 'date:asc' | 'name:asc' | 'name:desc';
export type ViewBranchesLayout = 'list' | 'tree';
export type ViewFilesLayout = 'auto' | 'list' | 'tree';
export type ViewShowBranchComparison = 'branch' | 'working';
export interface AdvancedConfig {
readonly abbreviatedShaLength: number;
readonly abbreviateShaOnCopy: boolean;
readonly blame: {
readonly customArguments: string[] | null;
readonly delayAfterEdit: number;
readonly sizeThresholdAfterEdit: number;
};
readonly caching: {
readonly enabled: boolean;
};
readonly commitOrdering: 'date' | 'author-date' | 'topo' | null;
readonly externalDiffTool: string | null;
readonly externalDirectoryDiffTool: string | null;
readonly fileHistoryFollowsRenames: boolean;
readonly fileHistoryShowAllBranches: boolean;
readonly fileHistoryShowMergeCommits: boolean;
readonly maxListItems: number;
readonly maxSearchItems: number;
readonly messages: { [key in SuppressedMessages]: boolean };
readonly quickPick: {
readonly closeOnFocusOut: boolean;
};
readonly repositorySearchDepth: number | null;
readonly similarityThreshold: number | null;
}
export interface GraphConfig {
readonly allowMultiple: boolean;
readonly avatars: boolean;
readonly commitOrdering: 'date' | 'author-date' | 'topo';
readonly dateFormat: DateTimeFormat | string | null;
readonly dateStyle: DateStyle | null;
readonly defaultItemLimit: number;
readonly dimMergeCommits: boolean;
readonly minimap: {
readonly enabled: boolean;
readonly dataType: 'commits' | 'lines';
readonly additionalTypes: GraphMinimapMarkersAdditionalTypes[];
};
readonly highlightRowsOnRefHover: boolean;
readonly layout: 'editor' | 'panel';
readonly scrollRowPadding: number;
readonly showDetailsView: 'open' | 'selection' | false;
readonly showGhostRefsOnRowHover: boolean;
readonly scrollMarkers: {
readonly enabled: boolean;
readonly additionalTypes: GraphScrollMarkersAdditionalTypes[];
};
readonly pullRequests: {
readonly enabled: boolean;
};
readonly showRemoteNames: boolean;
readonly showUpstreamStatus: boolean;
readonly pageItemLimit: number;
readonly searchItemLimit: number;
readonly statusBar: {
readonly enabled: boolean;
};
}
export interface CodeLensConfig {
readonly authors: {
readonly enabled: boolean;
readonly command: CodeLensCommand | false;
};
readonly dateFormat: DateTimeFormat | string | null;
/*readonly*/ enabled: boolean;
readonly includeSingleLineSymbols: boolean;
readonly recentChange: {
readonly enabled: boolean;
readonly command: CodeLensCommand | false;
};
readonly scopes: CodeLensScopes[];
readonly scopesByLanguage: CodeLensLanguageScope[] | null;
readonly symbolScopes: string[];
}
export interface CodeLensLanguageScope {
readonly language: string | undefined;
readonly scopes?: CodeLensScopes[];
readonly symbolScopes?: string[];
}
export interface MenuConfig {
readonly editor:
| false
| {
readonly blame: boolean;
readonly clipboard: boolean;
readonly compare: boolean;
readonly history: boolean;
readonly remote: boolean;
};
readonly editorGroup:
| false
| {
readonly blame: boolean;
readonly compare: boolean;
};
readonly editorGutter:
| false
| {
readonly compare: boolean;
readonly remote: boolean;
readonly share: boolean;
};
readonly editorTab:
| false
| {
readonly clipboard: boolean;
readonly compare: boolean;
readonly history: boolean;
readonly remote: boolean;
};
readonly explorer:
| false
| {
readonly clipboard: boolean;
readonly compare: boolean;
readonly history: boolean;
readonly remote: boolean;
};
readonly ghpr:
| false
| {
readonly worktree: boolean;
};
readonly scm:
| false
| {
readonly graph: boolean;
};
readonly scmRepositoryInline: false | { readonly graph: boolean; readonly stash: boolean };
readonly scmRepository:
| false
| {
readonly authors: boolean;
readonly generateCommitMessage: boolean;
readonly patch: boolean;
readonly graph: boolean;
};
readonly scmGroupInline:
| false
| {
readonly stash: boolean;
};
readonly scmGroup:
| false
| {
readonly compare: boolean;
readonly openClose: boolean;
readonly patch: boolean;
readonly stash: boolean;
};
readonly scmItemInline:
| false
| {
readonly stash: boolean;
};
readonly scmItem:
| false
| {
readonly clipboard: boolean;
readonly compare: boolean;
readonly history: boolean;
readonly remote: boolean;
readonly share: boolean;
readonly stash: boolean;
};
}
export interface ModeConfig {
readonly name: string;
readonly statusBarItemName?: string;
readonly description?: string;
readonly annotations?: 'blame' | 'changes' | 'heatmap';
readonly codeLens?: boolean;
readonly currentLine?: boolean;
readonly hovers?: boolean;
readonly statusBar?: boolean;
}
export type RemotesConfig =
| {
readonly domain: string;
readonly regex: null;
readonly name?: string;
readonly protocol?: string;
readonly type: CustomRemoteType;
readonly urls?: RemotesUrlsConfig;
readonly ignoreSSLErrors?: boolean | 'force';
}
| {
readonly domain: null;
readonly regex: string;
readonly name?: string;
readonly protocol?: string;
readonly type: CustomRemoteType;
readonly urls?: RemotesUrlsConfig;
readonly ignoreSSLErrors?: boolean | 'force';
};
export interface RemotesUrlsConfig {
readonly repository: string;
readonly branches: string;
readonly branch: string;
readonly commit: string;
readonly comparison?: string;
readonly file: string;
readonly fileInBranch: string;
readonly fileInCommit: string;
readonly fileLine: string;
readonly fileRange: string;
}
// NOTE: Must be kept in sync with `gitlens.advanced.messages` setting in the package.json
export type SuppressedMessages =
| 'suppressCommitHasNoPreviousCommitWarning'
| 'suppressCommitNotFoundWarning'
| 'suppressCreatePullRequestPrompt'
| 'suppressDebugLoggingWarning'
| 'suppressFileNotUnderSourceControlWarning'
| 'suppressGitDisabledWarning'
| 'suppressGitMissingWarning'
| 'suppressGitVersionWarning'
| 'suppressLineUncommittedWarning'
| 'suppressNoRepositoryWarning'
| 'suppressRebaseSwitchToTextWarning'
| 'suppressIntegrationDisconnectedTooManyFailedRequestsWarning'
| 'suppressIntegrationRequestFailed500Warning'
| 'suppressIntegrationRequestTimedOutWarning'
| 'suppressBlameInvalidIgnoreRevsFileWarning'
| 'suppressBlameInvalidIgnoreRevsFileBadRevisionWarning';
export interface ViewsCommonConfig {
readonly collapseWorktreesWhenPossible: boolean;
readonly defaultItemLimit: number;
readonly formats: {
readonly commits: {
readonly label: string;
readonly description: string;
readonly tooltip: string;
readonly tooltipWithStatus: string;
};
readonly files: {
readonly label: string;
readonly description: string;
};
readonly stashes: {
readonly label: string;
readonly description: string;
};
};
readonly openChangesInMultiDiffEditor: boolean;
readonly pageItemLimit: number;
readonly showRelativeDateMarkers: boolean;
}
export const viewsCommonConfigKeys: (keyof ViewsCommonConfig)[] = [
'defaultItemLimit',
'formats',
'pageItemLimit',
'showRelativeDateMarkers',
];
interface ViewsConfigs {
readonly branches: BranchesViewConfig;
readonly commits: CommitsViewConfig;
readonly commitDetails: CommitDetailsViewConfig;
readonly contributors: ContributorsViewConfig;
readonly drafts: DraftsViewConfig;
readonly fileHistory: FileHistoryViewConfig;
readonly lineHistory: LineHistoryViewConfig;
readonly patchDetails: PatchDetailsViewConfig;
readonly pullRequest: PullRequestViewConfig;
readonly remotes: RemotesViewConfig;
readonly repositories: RepositoriesViewConfig;
readonly searchAndCompare: SearchAndCompareViewConfig;
readonly stashes: StashesViewConfig;
readonly tags: TagsViewConfig;
readonly worktrees: WorktreesViewConfig;
readonly workspaces: WorkspacesViewConfig;
}
export type ViewsConfigKeys = keyof ViewsConfigs;
export const viewsConfigKeys: ViewsConfigKeys[] = [
'branches',
'commits',
'commitDetails',
'contributors',
'drafts',
'fileHistory',
'lineHistory',
'patchDetails',
'pullRequest',
'remotes',
'repositories',
'searchAndCompare',
'stashes',
'tags',
'worktrees',
'workspaces',
];
export type ViewsConfig = ViewsCommonConfig & ViewsConfigs;
export interface BranchesViewConfig {
readonly avatars: boolean;
readonly branches: {
readonly layout: ViewBranchesLayout;
};
readonly files: ViewsFilesConfig;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForBranches: boolean;
readonly showForCommits: boolean;
};
readonly reveal: boolean;
readonly showBranchComparison: false | Extract<ViewShowBranchComparison, 'branch'>;
}
export interface CommitsViewConfig {
readonly avatars: boolean;
readonly branches: undefined;
readonly files: ViewsFilesConfig;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForBranches: boolean;
readonly showForCommits: boolean;
};
readonly reveal: boolean;
readonly showBranchComparison: false | ViewShowBranchComparison;
}
export interface CommitDetailsViewConfig {
readonly avatars: boolean;
readonly files: ViewsFilesConfig;
readonly autolinks: {
readonly enabled: boolean;
readonly enhanced: boolean;
};
readonly pullRequests: {
readonly enabled: boolean;
};
}
export interface PatchDetailsViewConfig {
readonly avatars: boolean;
readonly files: ViewsFilesConfig;
}
export interface ContributorsViewConfig {
readonly avatars: boolean;
readonly files: ViewsFilesConfig;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForCommits: boolean;
};
readonly reveal: boolean;
readonly showAllBranches: boolean;
readonly showStatistics: boolean;
}
export interface DraftsViewConfig {
readonly avatars: boolean;
readonly branches: undefined;
readonly files: ViewsFilesConfig;
readonly pullRequests: undefined;
readonly reveal: undefined;
}
export interface FileHistoryViewConfig {
readonly avatars: boolean;
readonly files: ViewsFilesConfig;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForCommits: boolean;
};
}
export interface LineHistoryViewConfig {
readonly avatars: boolean;
}
export interface PullRequestViewConfig {
readonly avatars: boolean;
readonly branches: undefined;
readonly files: ViewsFilesConfig;
readonly pullRequests: undefined;
readonly reveal: undefined;
readonly showBranchComparison: undefined;
}
export interface RemotesViewConfig {
readonly avatars: boolean;
readonly branches: {
readonly layout: ViewBranchesLayout;
};
readonly files: ViewsFilesConfig;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForBranches: boolean;
readonly showForCommits: boolean;
};
readonly reveal: boolean;
}
export interface RepositoriesViewConfig {
readonly autoRefresh: boolean;
readonly autoReveal: boolean;
readonly avatars: boolean;
readonly branches: {
readonly layout: ViewBranchesLayout;
readonly showBranchComparison: false | Extract<ViewShowBranchComparison, 'branch'>;
};
readonly compact: boolean;
readonly files: ViewsFilesConfig;
readonly includeWorkingTree: boolean;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForBranches: boolean;
readonly showForCommits: boolean;
};
readonly showBranchComparison: false | ViewShowBranchComparison;
readonly showBranches: boolean;
readonly showCommits: boolean;
readonly showContributors: boolean;
readonly showIncomingActivity: boolean;
readonly showRemotes: boolean;
readonly showStashes: boolean;
readonly showTags: boolean;
readonly showUpstreamStatus: boolean;
readonly showWorktrees: boolean;
}
export interface SearchAndCompareViewConfig {
readonly avatars: boolean;
readonly files: ViewsFilesConfig;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForCommits: boolean;
};
}
export interface StashesViewConfig {
readonly files: ViewsFilesConfig;
readonly reveal: boolean;
}
export interface TagsViewConfig {
readonly avatars: boolean;
readonly branches: {
readonly layout: ViewBranchesLayout;
};
readonly files: ViewsFilesConfig;
readonly reveal: boolean;
}
export interface WorktreesViewConfig {
readonly avatars: boolean;
readonly files: ViewsFilesConfig;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForBranches: boolean;
readonly showForCommits: boolean;
};
readonly reveal: boolean;
readonly showBranchComparison: false | Extract<ViewShowBranchComparison, 'branch'>;
}
export interface WorkspacesViewConfig {
readonly avatars: boolean;
readonly branches: {
readonly layout: ViewBranchesLayout;
readonly showBranchComparison: false | Extract<ViewShowBranchComparison, 'branch'>;
};
readonly compact: boolean;
readonly files: ViewsFilesConfig;
readonly includeWorkingTree: boolean;
readonly pullRequests: {
readonly enabled: boolean;
readonly showForBranches: boolean;
readonly showForCommits: boolean;
};
readonly showBranchComparison: false | ViewShowBranchComparison;
readonly showBranches: boolean;
readonly showCommits: boolean;
readonly showContributors: boolean;
readonly showIncomingActivity: boolean;
readonly showRemotes: boolean;
readonly showStashes: boolean;
readonly showTags: boolean;
readonly showUpstreamStatus: boolean;
readonly showWorktrees: boolean;
}
export interface ViewsFilesConfig {
readonly compact: boolean;
readonly icon: 'status' | 'type';
readonly layout: ViewFilesLayout;
readonly threshold: number;
}
export function fromOutputLevel(level: OutputLevel): LogLevel {
switch (level) {
case /** @deprecated use `off` */ 'silent':
return 'off';
case /** @deprecated use `error` */ 'errors':
return 'error';
case /** @deprecated use `info` */ 'verbose':
return 'info';
default:
return level;
}
}
export type CoreConfig = {
readonly editor: {
readonly letterSpacing: number;
};
readonly files: {
readonly encoding: string;
readonly exclude: Record<string, boolean>;
};
readonly git: {
readonly autoRepositoryDetection: boolean | 'subFolders' | 'openEditors';
readonly enabled: boolean;
readonly fetchOnPull: boolean;
readonly path: string | string[] | null;
readonly pullTags: boolean;
readonly repositoryScanIgnoredFolders: string[];
readonly repositoryScanMaxDepth: number;
readonly useForcePushIfIncludes: boolean;
readonly useForcePushWithLease: boolean;
};
readonly http: {
readonly proxy: string;
readonly proxySupport: 'fallback' | 'off' | 'on' | 'override';
readonly proxyStrictSSL: boolean;
};
readonly multiDiffEditor: {
readonly experimental: {
readonly enabled: boolean;
};
};
readonly search: {
readonly exclude: Record<string, boolean>;
};
readonly workbench: {
readonly editorAssociations: Record<string, string> | { viewType: string; filenamePattern: string }[];
readonly tree: {
readonly renderIndentGuides: 'always' | 'none' | 'onHover';
readonly indent: number;
};
};
};