-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode_Nocomment.json
1940 lines (1940 loc) · 73.3 KB
/
vscode_Nocomment.json
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
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"zenMode.restore": true,
"zenMode.hideLineNumbers": true,
"zenMode.fullScreen": true,
"workbench.welcomePage.walkthroughs.openOnInstall": true,
"workbench.welcomePage.preferReducedMotion": false,
"workbench.welcomePage.experimental.videoTutorials": "off",
"workbench.view.alwaysShowHeaderActions": false,
"workbench.trustedDomains.promptInTrustedWorkspace": false,
"workbench.tips.enabled": true,
"workbench.statusBar.visible": true,
"workbench.settings.openDefaultSettings": false,
"workbench.settings.enableNaturalLanguageSearch": true,
"workbench.sash.hoverDelay": 300,
"workbench.reduceMotion": "auto",
"workbench.quickOpen.preserveInput": false,
"workbench.quickOpen.closeOnFocusLost": true,
"workbench.preferredLightColorTheme": "Default Light+",
"workbench.preferredDarkColorTheme": "Default Dark+",
"workbench.panel.opensMaximized": "preserve",
"workbench.localHistory.maxFileSize": 256,
"workbench.localHistory.enabled": true,
"workbench.list.smoothScrolling": false,
"workbench.list.keyboardNavigation": "highlight",
"workbench.list.horizontalScrolling": false,
"workbench.list.fastScrollSensitivity": 5,
"workbench.layoutControl.enabled": true,
"workbench.iconTheme": "vs-seti",
"workbench.externalUriOpeners": {},
"workbench.experimental.layoutControl.enabled": false,
"workbench.experimental.editor.dragAndDropIntoEditor.enabled": false,
"workbench.enableExperiments": true,
"workbench.editor.tabCloseButton": "right",
"workbench.editor.splitSizing": "distribute",
"workbench.editor.showIcons": true,
"workbench.editor.revealIfOpen": false,
"workbench.editor.openSideBySideDirection": "right",
"workbench.editor.openPositioning": "right",
"workbench.editor.mouseBackForwardToNavigate": true,
"workbench.editor.limit.value": 10,
"workbench.editor.languageDetection": true,
"workbench.editor.historyBasedLanguageDetection": true,
"workbench.editor.focusRecentEditorAfterClose": true,
"workbench.editor.decorations.colors": true,
"workbench.editor.decorations.badges": true,
"workbench.editor.closeOnFileDelete": false,
"workbench.editor.closeEmptyGroups": true,
"workbench.editor.centeredLayoutAutoResize": true,
"workbench.commandPalette.preserveInput": false,
"workbench.activityBar.visible": true,
"workbench.colorCustomizations": {},
"workbench.activityBar.iconClickBehavior": "toggle",
"window.titleSeparator": " - ",
"window.title": "${dirty}${activeEditorShort}${separator}${rootName}${separator}${appName}",
"window.restoreFullscreen": false,
"window.openFoldersInNewWindow": "default",
"window.newWindowDimensions": "default",
"window.menuBarVisibility": "classic",
"window.enableMenuBarMnemonics": true,
"window.doubleClickIconToClose": false,
"window.closeWhenEmpty": false,
"window.autoDetectHighContrast": true,
"window.autoDetectColorScheme": false,
"vsintellicode.typescript.completionsEnabled": true,
"vsintellicode.sql.completionsEnabled": true,
"vsintellicode.modelDownloadPath": null,
"vsintellicode.features.apiExamplests": "default",
"vim.whichwrap": "b,s",
"vim.visualModeKeyBindingsNonRecursive": [],
"vim.visualModeKeyBindings": [],
"vim.vimrc.path": "",
"vim.vimrc.enable": false,
"vim.useSystemClipboard": false,
"vim.useCtrlKeys": true,
"vim.targets.smartQuotes.enable": true,
"vim.targets.enable": false,
"vim.surround": true,
"workbench.settings.settingsSearchTocBehavior": "filter",
"vim.targets.smartQuotes.aIncludesSurroundingSpaces": true,
"vim.statusBarColors.visualline": "#005f5f",
"vim.statusBarColors.visualblock": "#86592d",
"vim.statusBarColors.visual": "#5f00af",
"vim.statusBarColors.replace": "#00000",
"vim.statusBarColors.normal": "#005f5f",
"vim.statusBarColors.easymotionmode": "#007acc",
"vim.startofline": true,
"vim.startInInsertMode": false,
"vim.sneakReplacesF": false,
"vim.sneak": false,
"vim.smartcase": true,
"vim.smartRelativeLine": false,
"vim.showcmd": true,
"vim.showMarksInGutter": false,
"vim.searchHighlightColor": "",
"vim.replaceWithRegister": false,
"vim.normalModeKeyBindings": [],
"window.dialogStyle": "native",
"vim.neovimUseConfigFile": false,
"vim.neovimPath": "",
"vim.mouseSelectionGoesIntoVisualMode": true,
"workbench.settings.useSplitJSON": false,
"vim.maxmapdepth": 1000,
"vim.leader": "\\",
"vim.joinspaces": true,
"vim.iskeyword": "",
"vim.inccommand": "replace",
"vim.ignorecase": true,
"vim.hlsearch": false,
"vim.history": 50,
"workbench.list.openMode": "singleClick",
"vim.handleKeys": {
"<C-z>": false,
"<C-s>": false,
"<C-d>": true
},
"vim.foldfix": false,
"vim.enableNeovim": false,
"vim.easymotionMarkerForegroundColorTwoCharFirst": "#ffb400",
"vim.easymotionMarkerBackgroundColor": "#0000",
"vim.easymotionKeys": "hklyuiopnm,qwertzxcvbasdgjf;",
"vim.easymotionDimColor": "#777777",
"vim.easymotionDimBackground": true,
"vim.disableExtension": false,
"vim.debug.silent": false,
"vim.debug.loggingLevelForConsole": "error",
"vim.cursorStylePerMode.visual": "",
"vim.cursorStylePerMode.replace": "",
"vim.cursorStylePerMode.normal": "",
"vim.changeWordIncludesWhitespace": false,
"vim.autoSwitchInputMethod.obtainIMCmd": "/path/to/im-select",
"vim.autoSwitchInputMethod.enable": false,
"vim.autoSwitchInputMethod.defaultIM": "",
"vim.argumentObjectSeparators": [
","
],
"typescript.workspaceSymbols.scope": "allOpenProjects",
"typescript.validate.enable": true,
"window.customMenuBarAltFocus": true,
"vim.visualstar": false,
"typescript.tsserver.useSyntaxServer": "auto",
"window.restoreWindows": "all",
"typescript.tsserver.useSeparateSyntaxServer": true,
"typescript.tsserver.trace": "off",
"vim.searchMatchTextColor": "",
"typescript.tsserver.pluginPaths": [],
"typescript.tsserver.enableTracing": false,
"typescript.tsdk": "",
"typescript.suggestionActions.enabled": true,
"typescript.suggest.paths": true,
"typescript.suggest.objectLiteralMethodSnippets.enabled": true,
"typescript.suggest.includeCompletionsWithSnippetText": true,
"typescript.suggest.includeCompletionsForImportStatements": true,
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
"typescript.suggest.enabled": true,
"typescript.suggest.completeJSDocs": true,
"typescript.suggest.completeFunctionCalls": false,
"workbench.editor.enablePreviewFromCodeNavigation": false,
"typescript.preferences.useAliasesForRenames": true,
"typescript.preferences.renameShorthandProperties": true,
"typescript.preferences.quoteStyle": "auto",
"typescript.preferences.jsxAttributeCompletionStyle": "auto",
"typescript.preferences.includePackageJsonAutoImports": "auto",
"typescript.preferences.importModuleSpecifier": "shortest",
"typescript.locale": "",
"typescript.inlayHints.variableTypes.enabled": false,
"typescript.inlayHints.parameterTypes.enabled": false,
"typescript.inlayHints.parameterNames.enabled": "none",
"typescript.inlayHints.enumMemberValues.enabled": false,
"typescript.implementationsCodeLens.enabled": false,
"typescript.format.placeOpenBraceOnNewLineForFunctions": false,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"typescript.format.insertSpaceAfterSemicolonInForStatements": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"typescript.format.insertSpaceAfterCommaDelimiter": true,
"typescript.format.enable": true,
"typescript.disableAutomaticTypeAcquisition": false,
"typescript.check.npmIsInstalled": true,
"typescript.autoClosingTags": true,
"timeline.pageSize": null,
"timeline.excludeSources": null,
"testing.saveBeforeTest": true,
"testing.openTesting": "openOnTestStart",
"testing.defaultGutterClickAction": "run",
"testing.automaticallyOpenPeekView": "failureInVisibleDocument",
"testing.autoRun.delay": 1000,
"terminal.integrated.wordSeparators": " ()[]{}',\"`─‘’",
"terminal.integrated.useWslProfiles": true,
"terminal.integrated.unicodeVersion": "11",
"terminal.integrated.tabs.title": "${process}",
"terminal.integrated.tabs.showActions": "singleTerminalOrNarrow",
"typescript.enablePromptUseWorkspaceTsdk": false,
"terminal.integrated.tabs.separator": " - ",
"terminal.integrated.tabs.location": "right",
"terminal.integrated.tabs.hideCondition": "singleTerminal",
"terminal.integrated.tabs.enableAnimation": true,
"zenMode.hideStatusBar": true,
"terminal.integrated.splitCwd": "inherited",
"window.openFilesInNewWindow": "off",
"terminal.integrated.showExitAlert": true,
"terminal.integrated.shellIntegration.showWelcome": true,
"terminal.integrated.shellIntegration.history": 100,
"vim.showmodename": true,
"terminal.integrated.shellIntegration.decorationsEnabled": true,
"terminal.integrated.shellIntegration.decorationIconSuccess": "primitive-dot",
"terminal.integrated.shellIntegration.decorationIconError": "error-small",
"terminal.integrated.shellIntegration.decorationIcon": "circle-outline",
"terminal.integrated.shellArgs.osx": [
"-l"
],
"terminal.integrated.shellArgs.linux": [],
"terminal.integrated.shell.windows": null,
"terminal.integrated.shell.linux": null,
"terminal.integrated.sendKeybindingsToShell": false,
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "zsh"
},
"tmux": {
"path": "tmux",
"icon": "terminal-tmux"
},
"pwsh": {
"path": "pwsh",
"icon": "terminal-powershell"
},
"fish": {
"path": "fish"
},
"bash": {
"path": "bash",
"icon": "terminal-bash"
}
},
"terminal.integrated.persistentSessionScrollback": 100,
"typescript.tsserver.maxTsServerMemory": 3072,
"terminal.integrated.mouseWheelScrollSensitivity": 1,
"terminal.integrated.minimumContrastRatio": 4.5,
"terminal.integrated.macOptionIsMeta": false,
"terminal.integrated.macOptionClickForcesSelection": false,
"vim.shell": "",
"typescript.tsserver.log": "off",
"terminal.integrated.localEchoStyle": "dim",
"terminal.integrated.localEchoLatencyThreshold": 30,
"terminal.integrated.localEchoEnabled": "auto",
"vim.timeout": 1000,
"terminal.integrated.letterSpacing": 0,
"terminal.integrated.inheritEnv": true,
"terminal.integrated.ignoreProcessNames": [
"starship",
"oh-my-posh",
"bash",
"zsh"
],
"terminal.integrated.fontWeight": "normal",
"workbench.list.multiSelectModifier": "ctrlCmd",
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "",
"terminal.integrated.fastScrollSensitivity": 5,
"terminal.integrated.environmentChangesRelaunch": true,
"terminal.integrated.env.osx": {},
"vim.commandLineModeKeyBindingsNonRecursive": [],
"terminal.integrated.env.linux": {},
"terminal.integrated.enablePersistentSessions": true,
"terminal.integrated.enableMultiLinePasteWarning": true,
"terminal.integrated.enableFileLinks": true,
"terminal.integrated.drawBoldTextInBrightColors": true,
"terminal.integrated.defaultProfile.osx": null,
"terminal.integrated.defaultProfile.linux": null,
"terminal.integrated.cwd": "",
"terminal.integrated.customGlyphs": true,
"terminal.integrated.cursorBlinking": false,
"vim.easymotion": false,
"vim.camelCaseMotion.enable": false,
"terminal.integrated.confirmOnExit": "never",
"terminal.integrated.automationShell.osx": null,
"terminal.integrated.automationProfile.windows": null,
"terminal.integrated.automationProfile.osx": null,
"terminal.integrated.autoReplies": {},
"terminal.integrated.altClickMovesCursor": true,
"terminal.integrated.allowChords": true,
"terminal.external.windowsExec": "C:\\WINDOWS\\System32\\cmd.exe",
"terminal.external.linuxExec": "xterm",
"terminal.explorerKind": "integrated",
"telemetry.telemetryLevel": "all",
"workbench.editor.enablePreviewFromQuickOpen": false,
"telemetry.enableTelemetry": true,
"telemetry.enableCrashReporter": true,
"task.saveBeforeRun": "always",
"typescript.tsc.autoDetect": "on",
"task.quickOpen.skip": false,
"task.quickOpen.showAll": false,
"task.quickOpen.history": 30,
"timeline.pageOnScroll": false,
"terminal.integrated.copyOnSelection": false,
"simpleBrowser.focusLockIndicator.enabled": true,
"settingsSync.ignoredExtensions": [],
"security.workspace.trust.untrustedFiles": "prompt",
"security.workspace.trust.emptyWindow": true,
"security.workspace.trust.banner": "untilDismissed",
"search.useReplacePreview": true,
"terminal.integrated.tabs.enabled": true,
"search.useParentIgnoreFiles": false,
"search.usePCRE2": false,
"search.useGlobalIgnoreFiles": false,
"search.sortOrder": "default",
"search.smartCase": false,
"zenMode.centerLayout": true,
"workbench.colorTheme": "Default Dark+",
"search.showLineNumbers": false,
"search.seedWithNearestWord": false,
"search.seedOnFocus": false,
"search.searchOnType": true,
"search.searchEditor.reusePriorSearchConfiguration": false,
"search.searchEditor.doubleClickBehaviour": "goToLocation",
"search.searchEditor.defaultNumberOfContextLines": 1,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"search.quickOpen.includeHistory": true,
"search.quickOpen.history.filterSortOrder": "default",
"search.maxResults": 20000,
"search.maintainFileSearchCache": false,
"search.followSymlinks": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true
},
"search.collapseResults": "alwaysExpand",
"search.actionsPosition": "right",
"scss.lint.zeroUnits": "ignore",
"vim.easymotionIncSearchForegroundColor": "#7fbf00",
"scss.lint.vendorPrefix": "warning",
"scss.lint.unknownVendorSpecificProperties": "ignore",
"editor.suggest.showFunctions": true,
"vim.statusBarColorControl": false,
"vim.normalModeKeyBindingsNonRecursive": [],
"typescript.tsserver.experimental.enableProjectDiagnostics": false,
"java.configuration.checkProjectSettingsExclusions": false,
"java.codeGeneration.useBlocks": false,
"maven.view": "flat",
"vim.operatorPendingModeKeyBindings": [],
"java.completion.maxResults": 0,
"editor.find.seedSearchStringFromSelection": "always",
"java.completion.filteredTypes": [
"java.awt.*",
"com.sun.*",
"sun.*",
"jdk.*",
"org.graalvm.*",
"io.micrometer.shaded.*"
],
"editor.fontLigatures": false,
"scss.lint.ieHack": "ignore",
"typescript.suggest.autoImports": true,
"editor.suggest.showFields": true,
"java.codeGeneration.toString.skipNullValues": false,
"editor.find.addExtraSpaceOnTop": true,
"java.codeGeneration.toString.limitElements": 0,
"testing.followRunningTest": true,
"scm.showActionButton": true,
"java.codeGeneration.generateComments": false,
"jake.autoDetect": "off",
"http.systemCertificates": true,
"http.proxySupport": "override",
"http.proxyStrictSSL": true,
"http.proxyAuthorization": null,
"jupyter.sendSelectionToInteractiveWindow": false,
"http.proxy": "",
"python.linting.mypyEnabled": false,
"html.hover.documentation": true,
"vim.autoindent": true,
"editor.suggest.showModules": true,
"html.format.wrapAttributesIndentSize": null,
"css.lint.argumentsInColorFunction": "error",
"html.trace.server": "off",
"html.format.wrapAttributes": "auto",
"go.languageServerFlags": [],
"breadcrumbs.enabled": true,
"html.format.unformatted": "wbr",
"html.format.enable": true,
"html.format.contentUnformatted": "pre,code,textarea",
"vsintellicode.features.python.deepLearning": "default",
"debug.javascript.pickAndAttachOptions": {},
"java.import.gradle.offline.enabled": false,
"java.autobuild.enabled": true,
"scss.lint.unknownAtRules": "warning",
"java.maxConcurrentBuilds": 1,
"grunt.autoDetect": "off",
"gopls": {},
"go.vetOnSave": "package",
"remote.SSH.serverPickPortsFromRange": {},
"css.format.newlineBetweenRules": true,
"editor.formatOnPaste": false,
"java.recommendations.dependency.analytics.show": true,
"workbench.editor.splitOnDragAndDrop": true,
"go.useCodeSnippetsOnFunctionSuggest": false,
"editor.suggest.showFiles": true,
"jupyter.changeDirOnImportExport": false,
"go.toolsManagement.autoUpdate": false,
"go.testOnSave": false,
"jupyter.maxOutputSize": 400,
"go.testExplorer.packageDisplayMode": "flat",
"vim.textwidth": 80,
"java.completion.guessMethodArguments": false,
"extensions.supportVirtualWorkspaces": {
"pub.name": false
},
"breadcrumbs.showNumbers": true,
"workbench.editor.untitled.labelFormat": "content",
"less.lint.hexColorLength": "error",
"go.languageServerExperimentalFeatures": {
"diagnostics": true
},
"go.editorContextMenuCommands": {
"toggleTestFile": true,
"addImport": true,
"debugTestAtCursor": true,
"fillStruct": false,
"addTags": true,
"benchmarkAtCursor": false,
"generateTestForFile": false,
"playground": true,
"generateTestForFunction": true,
"testPackage": false,
"generateTestForPackage": false,
"testFile": false,
"testAtCursor": true,
"removeTags": false,
"testCoverage": true
},
"bookmarks.label.suggestion": "dontUse",
"jupyter.debugJustMyCode": true,
"go.installDependenciesWhenBuilding": false,
"javascript.format.placeOpenBraceOnNewLineForFunctions": false,
"scm.alwaysShowActions": false,
"python.linting.ignorePatterns": [
"**/site-packages/**/*.py",
".vscode/*.py"
],
"scss.lint.validProperties": [],
"go.gotoSymbol.includeGoroot": false,
"editor.padding.top": 0,
"editor.columnSelection": false,
"editor.gotoLocation.alternativeTypeDefinitionCommand": "editor.action.goToReferences",
"go.coverOnSingleTest": false,
"files.participants.timeout": 60000,
"go.coverOnSave": false,
"vim.targets.bracketObjects.enable": true,
"go.coverMode": "default",
"[javascript]": {
"editor.maxTokenizationLineLength": 2500
},
"go.buildFlags": [],
"github-enterprise.uri": "",
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"[java]": {
"editor.suggest.snippetsPreventQuickSuggestions": false
},
"vim.insertModeKeyBindingsNonRecursive": [],
"editor.comments.ignoreEmptyLines": true,
"python.terminal.executeInFileDir": false,
"go.buildOnSave": "package",
"editor.minimap.scale": 1,
"files.trimTrailingWhitespace": false,
"files.saveConflictResolution": "askUser",
"files.insertFinalNewline": false,
"explorer.experimental.fileNesting.enabled": false,
"breadcrumbs.showMethods": true,
"html.format.extraLiners": "head, body, /html",
"files.hotExit": "onExit",
"debug.javascript.terminalOptions": {},
"files.enableTrash": true,
"javascript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": true,
"workbench.tree.expandMode": "singleClick",
"editor.hover.sticky": true,
"editor.scrollbar.horizontal": "auto",
"java.server.launchMode": "Hybrid",
"workbench.sash.size": 4,
"python.testing.unittestArgs": [
"-v",
"-s",
".",
"-p",
"*test*.py"
],
"extensions.ignoreRecommendations": false,
"css.lint.boxModel": "ignore",
"go.testEnvFile": null,
"editor.trimAutoWhitespace": true,
"remote.containers.logLevel": "debug",
"extensions.confirmedUriHandlerExtensionIds": [],
"go.alternateTools": {},
"extensions.closeExtensionDetailsOnViewChange": false,
"javascript.inlayHints.enumMemberValues.enabled": false,
"breadcrumbs.icons": true,
"bookmarks.saveBookmarksInProject": false,
"explorer.openEditors.visible": 9,
"explorer.experimental.fileNesting.expand": true,
"notebook.consolidatedOutputButton": true,
"explorer.enableDragAndDrop": true,
"go.testTags": null,
"explorer.decorations.colors": true,
"files.associations": {},
"explorer.autoReveal": true,
"emmet.variables": {},
"javascript.inlayHints.functionLikeReturnTypes.enabled": false,
"outline.showFields": true,
"editor.suggest.showVariables": true,
"css.format.newlineBetweenSelectors": true,
"go.useLanguageServer": true,
"emmet.optimizeStylesheetParsing": true,
"editor.unusualLineTerminators": "prompt",
"workbench.editor.preferHistoryBasedLanguageDetection": true,
"emmet.extensionsPath": [],
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
"vim.highlightedyank.textColor": "",
"editor.colorDecorators": true,
"editor.letterSpacing": 0,
"editor.wrappingStrategy": "simple",
"explorer.confirmDelete": true,
"editor.wordWrap": "off",
"workbench.tree.indent": 8,
"explorer.sortOrder": "default",
"java.format.onType.enabled": true,
"editor.unicodeHighlight.includeComments": "inUntrustedWorkspace",
"editor.unicodeHighlight.allowedLocales": {
"_vscode": true,
"_os": true
},
"editor.unicodeHighlight.allowedCharacters": {},
"editor.unicodeHighlight.includeStrings": true,
"editor.suggest.showStructs": true,
"settingsSync.keybindingsPerPlatform": true,
"outline.showFiles": true,
"editor.tabSize": 4,
"html.autoCreateQuotes": true,
"editor.tabCompletion": "off",
"[shellscript]": {
"files.eol": "\n"
},
"npm.enableRunFromFolder": false,
"python.venvFolders": [],
"editor.suggest.showUsers": true,
"python.linting.banditArgs": [],
"explorer.incrementalNaming": "simple",
"scm.diffDecorationsGutterVisibility": "always",
"gulp.autoDetect": "off",
"javascript.implicitProjectConfig.checkJs": false,
"remote.extensionKind": {
"pub.name": [
"ui"
]
},
"editor.suggest.showSnippets": true,
"editor.suggest.showReferences": true,
"terminal.external.osxExec": "Terminal.app",
"go.generateTestsFlags": [],
"workbench.localHistory.maxFileEntries": 50,
"editor.suggest.showKeywords": true,
"remote.containers.executeInWSLDistro": "",
"editor.suggest.showIcons": true,
"java.project.outputPath": "",
"go.coverageOptions": "showBothCoveredAndUncoveredCode",
"npm.runSilent": false,
"emmet.showAbbreviationSuggestions": true,
"javascript.format.semicolons": "ignore",
"editor.suggest.showEnumMembers": true,
"editor.suggest.showDeprecated": true,
"testing.gutterEnabled": true,
"go.toolsGopath": null,
"markdown.preview.fontSize": 14,
"workbench.preferredHighContrastLightColorTheme": "Default High Contrast Light",
"extensions.experimental.affinity": {
"pub.name": 1
},
"editor.suggest.showConstructors": true,
"java.configuration.maven.globalSettings": null,
"editor.largeFileOptimizations": true,
"editor.suggest.showConstants": true,
"workbench.editor.sharedViewState": false,
"scm.repositories.visible": 10,
"editor.suggestLineHeight": 0,
"editor.suggest.showClasses": true,
"vim.searchHighlightTextColor": "",
"editor.suggest.shareSuggestSelections": false,
"java.format.settings.url": null,
"editor.unicodeHighlight.invisibleCharacters": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": false,
"editor.suggest.showCustomcolors": true,
"editor.suggest.localityBonus": false,
"editor.suggest.preview": false,
"go.autocompleteUnimportedPackages": false,
"python.linting.pylintPath": "pylint",
"terminal.integrated.showLinkHover": true,
"search.searchOnTypeDebouncePeriod": 300,
"outline.showNamespaces": true,
"projectManager.git.ignoredFolders": [
"node_modules",
"out",
"typings",
"test",
".haxelib"
],
"testing.automaticallyOpenPeekViewDuringAutoRun": false,
"editor.stickyTabStops": false,
"[scss]": {
"editor.suggest.insertMode": "replace"
},
"editor.autoClosingBrackets": "languageDefined",
"json.schemas": [],
"emmet.showExpandedAbbreviation": "always",
"python.sortImports.args": [],
"vim.targets.smartQuotes.breakThroughLines": true,
"editor.showFoldingControls": "mouseover",
"remote.WSL2.connectionMethod": "wslExeProxy",
"json.format.enable": true,
"python.linting.pydocstylePath": "pydocstyle",
"html.suggest.html5": true,
"go.gotoSymbol.includeImports": false,
"editor.semanticHighlighting.enabled": "configuredByTheme",
"editor.selectionHighlight": true,
"python.pipenvPath": "pipenv",
"typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": true,
"editor.wordBasedSuggestionsMode": "matchingDocuments",
"python.analysis.autoImportCompletions": true,
"editor.scrollbar.vertical": "auto",
"scss.lint.fontFaceProperties": "warning",
"remote.restoreForwardedPorts": true,
"editor.suggest.showEnums": true,
"editor.scrollBeyondLastLine": true,
"editor.rulers": [],
"go.testEnvVars": {},
"extensions.showRecommendationsOnlyOnDemand": false,
"python.linting.pylamaEnabled": false,
"editor.roundedSelection": true,
"editor.renderWhitespace": "selection",
"editor.renderLineHighlight": "line",
"notebook.showFoldingControls": "mouseover",
"go.trace.server": "off",
"editor.quickSuggestions": {
"other": "on",
"strings": "off",
"comments": "off"
},
"editor.suggest.showColors": true,
"typescript.preferences.importModuleSpecifierEnding": "auto",
"jupyter.allowInput": true,
"editor.parameterHints.enabled": true,
"workbench.list.automaticKeyboardNavigation": true,
"html.format.endWithNewline": false,
"breadcrumbs.showKeys": true,
"less.completion.completePropertyWithSemicolon": true,
"python.experiments.optInto": [],
"editor.padding.bottom": 0,
"editor.autoClosingDelete": "auto",
"editor.lightbulb.enabled": true,
"typescript.suggest.classMemberSnippets.enabled": true,
"editor.occurrencesHighlight": true,
"merge-conflict.decorators.enabled": true,
"debug.console.fontSize": 14,
"go.disableConcurrentTests": false,
"vim.scroll": 0,
"terminal.integrated.automationShell.linux": null,
"java.completion.enabled": true,
"css.validate": true,
"editor.tokenColorCustomizations": {},
"files.eol": "auto",
"java.references.includeAccessors": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": false,
"editor.foldingMaximumRegions": 5000,
"remote.SSH.useFlock": true,
"debug.javascript.codelens.npmScripts": "top",
"css.lint.important": "ignore",
"python.linting.pydocstyleArgs": [],
"java.completion.favoriteStaticMembers": [
"org.junit.Assert.*",
"org.junit.Assume.*",
"org.junit.jupiter.api.Assertions.*",
"org.junit.jupiter.api.Assumptions.*",
"org.junit.jupiter.api.DynamicContainer.*",
"org.junit.jupiter.api.DynamicTest.*",
"org.mockito.Mockito.*",
"org.mockito.ArgumentMatchers.*",
"org.mockito.Answers.*"
],
"html.format.indentInnerHtml": false,
"breadcrumbs.showFields": true,
"scss.completion.triggerPropertyValueCompletion": true,
"remote.SSH.remoteServerListenOnSocket": false,
"debug.terminal.clearBeforeReusing": false,
"go.testFlags": null,
"debug.console.lineHeight": 0,
"search.useIgnoreFiles": true,
"css.lint.idSelector": "ignore",
"editor.glyphMargin": true,
"terminal.integrated.windowsEnableConpty": true,
"editor.suggest.showProperties": true,
"python.experiments.enabled": true,
"editor.unicodeHighlight.ambiguousCharacters": true,
"jupyter.pythonExportMethod": "direct",
"terminal.integrated.shellArgs.windows": [],
"markdown.preview.lineHeight": 1.6,
"scss.validate": true,
"comments.openView": "file",
"html.autoClosingTags": true,
"outline.showKeys": true,
"go.lintFlags": [],
"editor.suggest.showWords": true,
"css.lint.duplicateProperties": "ignore",
"java.import.gradle.user.home": null,
"css.lint.compatibleVendorPrefixes": "ignore",
"editor.renderLineHighlightOnlyWhenFocus": false,
"css.customData": [],
"debug.javascript.breakOnConditionalError": false,
"editor.find.autoFindInSelection": "never",
"editor.suggest.snippetsPreventQuickSuggestions": true,
"go.addTags": {
"template": "",
"tags": "json",
"promptForTags": false,
"transform": "snakecase",
"options": "json=omitempty"
},
"breadcrumbs.showVariables": true,
"editor.fontSize": 14,
"debug.javascript.autoAttachFilter": "disabled",
"python.diagnostics.sourceMapsEnabled": false,
"explorer.sortOrderLexicographicOptions": "default",
"audioCues.lineHasInlineSuggestion": "auto",
"notebook.markup.fontSize": 0,
"explorer.copyRelativePathSeparator": "auto",
"editor.suggest.showOperators": true,
"breadcrumbs.showTypeParameters": true,
"breadcrumbs.showStrings": true,
"dotfiles.repository": "",
"javascript.inlayHints.propertyDeclarationTypes.enabled": false,
"python.analysis.indexing": null,
"terminal.integrated.gpuAcceleration": "auto",
"breadcrumbs.showFunctions": true,
"editor.foldingStrategy": "auto",
"breadcrumbs.showProperties": true,
"jupyter.ignoreVscodeTheme": false,
"debug.console.collapseIdenticalLines": true,
"remote.SSH.defaultExtensions": [],
"terminal.integrated.bellDuration": 1000,
"explorer.experimental.fileNesting.patterns": {
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock",
"*.tsx": "${capture}.ts",
"*.ts": "${capture}.js",
"*.jsx": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts"
},
"vim.report": 2,
"notebook.diff.ignoreOutputs": false,
"breadcrumbs.showPackages": true,
"breadcrumbs.showClasses": true,
"go.toolsManagement.checkForUpdates": "proxy",
"css.lint.vendorPrefix": "warning",
"go.playground": {
"share": true,
"run": true,
"openbrowser": true
},
"editor.matchBrackets": "always",
"html.format.maxPreserveNewLines": null,
"workbench.editor.limit.enabled": false,
"editor.language.brackets": false,
"breadcrumbs.showNamespaces": true,
"editor.suggest.showIssues": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"javascript.format.insertSpaceAfterCommaDelimiter": true,
"scss.format.enable": true,
"search.quickOpen.includeSymbols": false,
"debug.disassemblyView.showSourceCode": true,
"less.lint.idSelector": "ignore",
"workbench.editorAssociations": {},
"debug.confirmOnExit": "never",
"window.openWithoutArgumentsInNewWindow": "on",
"java.codeGeneration.hashCodeEquals.useJava7Objects": false,
"jupyter.decorateCells": true,
"terminal.integrated.tabs.focusMode": "doubleClick",
"go.docsTool": "godoc",
"jupyter.pythonCompletionTriggerCharacters": ".%",
"html.validate.scripts": true,
"emmet.syntaxProfiles": {},
"editor.folding": true,
"less.format.newlineBetweenSelectors": true,
"html.format.preserveNewLines": true,
"java.codeGeneration.toString.listArrayContents": true,
"path-intellisense.autoTriggerNextSuggestion": false,
"projectManager.any.maxDepthRecursion": 4,
"python.linting.mypyCategorySeverity.note": "Information",
"vim.statusBarColors.easymotioninputmode": "#007acc",
"editor.suggest.showInlineDetails": true,
"zenMode.hideActivityBar": true,
"diffEditor.ignoreTrimWhitespace": true,
"python.linting.pycodestyleArgs": [],
"editor.formatOnSaveMode": "file",
"audioCues.noInlayHints": "auto",
"editor.suggest.showUnits": true,
"editor.showUnused": true,
"bookmarks.wrapNavigation": true,
"html.format.templating": false,
"css.lint.fontFaceProperties": "warning",
"terminal.integrated.scrollback": 1000,
"css.completion.triggerPropertyValueCompletion": true,
"terminal.integrated.tabs.showActiveTerminal": "singleTerminalOrNarrow",
"editor.inlineSuggest.enabled": true,
"python.linting.pylintCategorySeverity.error": "Error",
"php.suggest.basic": true,
"[yaml]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.autoIndent": "advanced"
},
"editor.scrollbar.scrollByPage": false,
"python.linting.lintOnSave": true,
"[plaintext]": {
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false
},
"editor.cursorBlinking": "blink",
"workbench.settings.openDefaultKeybindings": false,
"jupyter.generateSVGPlots": false,
"projectManager.filterOnFullPath": false,
"css.lint.emptyRules": "warning",
"terminal.integrated.confirmOnKill": "editor",
"editor.overviewRulerBorder": true,
"python.linting.flake8CategorySeverity.F": "Error",
"task.slowProviderWarning": true,
"debug.allowBreakpointsEverywhere": false,
"files.encoding": "utf8",
"bookmarks.useWorkaroundForFormatters": false,
"vim.statusBarColors.insert": "#5f0000",
"audioCues.volume": 50,
"[python]": {
"editor.wordBasedSuggestions": false
},
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"editor.snippetSuggestions": "inline",
"bookmarks.gutterIconPath": "",
"css.lint.unknownProperties": "warning",
"css.lint.zeroUnits": "ignore",
"go.survey.prompt": true,
"editor.formatOnSave": false,
"debug.javascript.resourceRequestOptions": {},
"editor.guides.bracketPairs": false,
"[markdown]": {
"editor.wordWrap": "on",
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.quickSuggestions": false
},
"editor.minimap.side": "right",
"editor.suggest.showValues": true,
"pylance.insidersChannel": "off",
"go.goroot": null,
"vim.easymotionMarkerForegroundColorTwoCharSecond": "#b98300",
"editor.minimap.maxColumn": 120,
"remote.containers.defaultExtensions": [],
"breadcrumbs.symbolSortOrder": "position",
"audioCues.lineHasBreakpoint": "auto",
"jupyter.liveShareConnectionTimeout": 1000,
"notebook.navigation.allowNavigateToSurroundingCells": true,
"debug.console.historySuggestions": true,
"css.lint.universalSelector": "ignore",
"workbench.editor.limit.perEditorGroup": false,
"debug.console.acceptSuggestionOnEnter": "off",
"diffEditor.renderSideBySide": true,
"editor.gotoLocation.multipleDeclarations": "peek",
"vim.argumentObjectOpeningDelimiters": [
"(",
"["
],
"[less]": {
"editor.suggest.insertMode": "replace"
},
"projectManager.tags": [
"Personal",
"Work"
],
"scm.countBadge": "all",
"terminal.integrated.defaultLocation": "view",
"editor.peekWidgetDefaultFocus": "tree",
"[json]": {
"editor.suggest.insertMode": "replace",
"editor.quickSuggestions": {
"strings": true
}
},
"debug.openDebug": "openOnDebugBreak",
"go.coverOnSingleTestFile": false,
"material-icon-theme.folders.theme": "specific",
"go.enableCodeLens": {
"runtest": true,
"references": false
},
"python.linting.flake8Args": [],
"debug.javascript.autoAttachSmartPattern": [
"${workspaceFolder}/**",
"!**/node_modules/**",
"**/$KNOWN_TOOLS$/**"
],
"editor.autoClosingOvertype": "auto",
"vsintellicode.java.completionsEnabled": true,
"javascript.suggest.includeCompletionsForImportStatements": true,
"java.format.settings.profile": null,
"terminal.integrated.enableBell": false,
"java.import.gradle.wrapper.enabled": true,
"java.saveActions.organizeImports": false,
"editor.renameOnType": false,
"vim.easymotionMarkerForegroundColorOneChar": "#ff0000",
"files.simpleDialog.enable": false,
"emmet.triggerExpansionOnTab": false,
"output.smartScroll.enabled": true,
"debug.toolBarLocation": "floating",
"markdown.preview.scrollPreviewWithEditor": true,
"jupyter.allowUnauthorizedRemoteConnection": false,
"vim.neovimConfigPath": "",
"editor.guides.bracketPairsHorizontal": "active",
"python.formatting.blackPath": "black",
"terminal.integrated.env.windows": {},
"editor.hideCursorInOverviewRuler": false,
"editor.autoIndent": "full",
"notebook.showCellStatusBar": "visible",
"[go]": {
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.insertSpaces": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"files.autoSaveDelay": 1000,
"go.coverageDecorator": {
"uncoveredGutterStyle": "slashyellow",
"uncoveredHighlightColor": "rgba(128,64,64,0.25)",
"uncoveredBorderColor": "rgba(128,64,64,0.25)",
"type": "highlight",
"coveredHighlightColor": "rgba(64,128,128,0.5)",
"coveredGutterStyle": "blockblue",
"coveredBorderColor": "rgba(64,128,128,0.5)"
},
"go.testExplorer.enable": true,
"extensions.autoUpdate": true,
"python.terminal.activateEnvironment": true,
"diffEditor.wordWrap": "inherit",
"material-icon-theme.showWelcomeMessage": true,
"[search-result]": {
"editor.lineNumbers": "off"
},
"files.autoSave": "off",
"editor.suggest.showMethods": true,
"js/ts.implicitProjectConfig.target": "ES2020",
"editor.suggest.showInterfaces": true,
"editor.renderFinalNewline": true,
"editor.gotoLocation.alternativeImplementationCommand": "",
"editor.foldingImportsByDefault": false,
"less.lint.fontFaceProperties": "warning",
"bookmarks.backgroundLineColor": "",
"go.gocodeAutoBuild": false,
"[makefile]": {
"editor.insertSpaces": false
},
"search.useRipgrep": true,
"editor.inlayHints.enabled": true,
"css.lint.float": "ignore",
"editor.renderControlCharacters": true,
"editor.minimap.size": "proportional",
"less.hover.references": true,
"editor.semanticTokenColorCustomizations": {},
"bookmarks.gutterIconBorderColor": "#157EFB",
"task.problemMatchers.neverPrompt": false,
"editor.stablePeek": false,
"javascript.preferences.importModuleSpecifierEnding": "auto",
"editor.codeLens": true,
"bookmarks.sideBar.expanded": false,
"typescript.reportStyleChecksAsWarnings": true,
"bookmarks.gutterIconFillColor": "#157EFB",
"editor.lineNumbers": "on",
"php.validate.run": "onSave",
"python.testing.pytestPath": "pytest",
"editor.unicodeHighlight.nonBasicASCII": "inUntrustedWorkspace",
"bookmarks.keepBookmarksOnLineDelete": false,
"editor.autoClosingQuotes": "languageDefined",
"diffEditor.codeLens": false,
"emmet.includeLanguages": {},
"jupyter.jupyterLaunchTimeout": 60000,
"editor.useTabStops": true,
"terminal.integrated.tabs.description": "${task}${separator}${local}${separator}${cwdFolder}",
"javascript.suggest.completeFunctionCalls": false,
"projectManager.projectsLocation": "",
"java.implementationsCodeLens.enabled": false,
"css.lint.importStatement": "ignore",
"java.jdt.ls.lombokSupport.enabled": true,