-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
992 lines (957 loc) · 47.8 KB
/
settings.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
{
// Window
"window.nativeTabs": true,
"window.autoDetectHighContrast": true,
"window.closeWhenEmpty": false,
"window.doubleClickIconToClose": false,
"window.newWindowDimensions": "default",
"window.openFilesInNewWindow": "off",
"window.openFoldersInNewWindow": "default",
"window.openWithoutArgumentsInNewWindow": "on",
"window.restoreFullscreen": false,
"window.restoreWindows": "all",
"window.title": "${rootName}",
"window.dialogStyle": "custom",
"window.titleBarStyle": "custom",
// Editor
"editor.acceptSuggestionOnCommitCharacter": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.accessibilityPageSize": 10,
"editor.accessibilitySupport": "off",
"editor.autoClosingBrackets": "languageDefined",
"editor.autoClosingOvertype": "auto",
"editor.autoClosingQuotes": "languageDefined",
"editor.autoIndent": "full",
"editor.autoSurround": "languageDefined",
"editor.codeActionsOnSave": {
"source.fixAll": "never",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"editor.formatOnSave": true,
"editor.codeLens": true,
"editor.colorDecorators": true,
"editor.columnSelection": false,
"editor.comments.insertSpace": true,
"editor.copyWithSyntaxHighlighting": true,
"editor.cursorBlinking": "expand",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorStyle": "line",
"editor.cursorSurroundingLines": 0,
"editor.cursorSurroundingLinesStyle": "default",
"editor.cursorWidth": 3,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.definitionLinkOpensInPeek": false,
"editor.detectIndentation": true,
"editor.dragAndDrop": true,
"editor.emptySelectionClipboard": true,
"editor.fastScrollSensitivity": 5,
"editor.find.addExtraSpaceOnTop": true,
"editor.find.autoFindInSelection": "never",
"editor.find.loop": true,
"editor.find.seedSearchStringFromSelection": "always",
"editor.folding": true,
"editor.foldingHighlight": true,
"editor.foldingStrategy": "auto",
"editor.fontFamily": "'FiraCode Nerd Font'",
"editor.fontLigatures": "'calt', 'liga', 'dlig', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08'",
"editor.fontWeight": "500",
"editor.glyphMargin": true,
"editor.gotoLocation.alternativeDeclarationCommand": "editor.action.goToReferences",
"editor.gotoLocation.alternativeDefinitionCommand": "editor.action.goToReferences",
"editor.gotoLocation.alternativeImplementationCommand": "",
"editor.gotoLocation.alternativeReferenceCommand": "",
"editor.gotoLocation.alternativeTypeDefinitionCommand": "editor.action.goToReferences",
"editor.gotoLocation.multipleDeclarations": "peek",
"editor.gotoLocation.multipleDefinitions": "peek",
"editor.gotoLocation.multipleImplementations": "peek",
"editor.gotoLocation.multipleReferences": "peek",
"editor.gotoLocation.multipleTypeDefinitions": "peek",
"editor.hideCursorInOverviewRuler": false,
"editor.hover.delay": 300,
"editor.hover.enabled": true,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.hover.sticky": true,
"editor.insertSpaces": true,
"editor.largeFileOptimizations": true,
"editor.letterSpacing": 0,
"editor.lineHeight": 0,
"editor.lineNumbers": "interval",
"editor.links": true,
"editor.matchBrackets": "never",
"editor.maxTokenizationLineLength": 20000,
"editor.minimap.enabled": true,
"editor.minimap.maxColumn": 50,
"editor.minimap.renderCharacters": false,
"editor.minimap.scale": 1,
"editor.minimap.showSlider": "always",
"editor.minimap.side": "right",
"editor.minimap.size": "proportional",
"editor.mouseWheelScrollSensitivity": 1,
"editor.mouseWheelZoom": false,
"editor.multiCursorMergeOverlapping": true,
"editor.multiCursorModifier": "alt",
"editor.multiCursorPaste": "spread",
"editor.occurrencesHighlight": "singleFile",
"editor.overviewRulerBorder": true,
"editor.padding.bottom": 0,
"editor.padding.top": 0,
"editor.parameterHints.cycle": false,
"editor.parameterHints.enabled": true,
"editor.peekWidgetDefaultFocus": "tree",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.quickSuggestionsDelay": 10,
"editor.rename.enablePreview": true,
"editor.renderFinalNewline": "on",
"editor.renderLineHighlight": "line",
"editor.renderLineHighlightOnlyWhenFocus": false,
"editor.renderWhitespace": "all",
"editor.roundedSelection": true,
"editor.rulers": [],
"editor.scrollBeyondLastColumn": 5,
"editor.scrollBeyondLastLine": true,
"editor.scrollPredominantAxis": true,
"editor.selectionHighlight": true,
"editor.semanticHighlighting.enabled": true,
"editor.semanticTokenColorCustomizations": {},
"editor.showFoldingControls": "mouseover",
"editor.showUnused": true,
"editor.smoothScrolling": true,
"editor.snippetSuggestions": "inline",
"editor.stablePeek": false,
"editor.suggest.filterGraceful": true,
"editor.suggest.insertMode": "insert",
"editor.suggest.localityBonus": false,
"editor.suggest.shareSuggestSelections": false,
"editor.suggest.showClasses": true,
"editor.suggest.showColors": true,
"editor.suggest.showConstants": true,
"editor.suggest.showConstructors": true,
"editor.suggest.showCustomcolors": true,
"editor.suggest.showEnumMembers": true,
"editor.suggest.showEnums": true,
"editor.suggest.showEvents": true,
"editor.suggest.showFields": true,
"editor.suggest.showFiles": true,
"editor.suggest.showFolders": true,
"editor.suggest.showFunctions": true,
"editor.suggest.showIcons": true,
"editor.suggest.showInterfaces": true,
"editor.suggest.showIssues": true,
"editor.suggest.showKeywords": true,
"editor.suggest.showMethods": true,
"editor.suggest.showModules": true,
"editor.suggest.showOperators": true,
"editor.suggest.showProperties": true,
"editor.suggest.showReferences": true,
"editor.suggest.showSnippets": true,
"editor.suggest.showStructs": true,
"editor.suggest.showTypeParameters": true,
"editor.suggest.showUnits": true,
"editor.suggest.showUsers": true,
"editor.suggest.showValues": true,
"editor.suggest.showVariables": true,
"editor.suggest.showWords": true,
"editor.suggest.snippetsPreventQuickSuggestions": true,
"editor.suggestFontSize": 0,
"editor.suggestLineHeight": 0,
"editor.suggestOnTriggerCharacters": true,
"editor.suggestSelection": "first",
"editor.tabCompletion": "off",
"editor.tabSize": 2,
"editor.tokenColorCustomizations": {},
"editor.trimAutoWhitespace": true,
"editor.unfoldOnClickAfterEndOfLine": false,
"editor.useTabStops": true,
"editor.wordBasedSuggestions": "matchingDocuments",
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"editor.wrappingIndent": "same",
"editor.wrappingStrategy": "simple",
"editor.guides.indentation": false,
"editor.guides.bracketPairs": true,
"editor.inlayHints.enabled": "on",
"editor.guides.highlightActiveIndentation": true,
"editor.fontSize": 14,
"editor.suggest.preview": true,
"editor.inlineSuggest.enabled": true,
"editor.stickyScroll.enabled": true,
"editor.linkedEditing": true,
// Workbench
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#1073cf2d",
"editor.lineHighlightBorder": "#9fced11f",
"editorCursor.foreground": "#88ff00",
"sideBar.border": "#ffe10057",
"tab.activeBackground": "#ff5fcc57",
"list.inactiveSelectionBackground": "#ff5fcc57",
"list.inactiveSelectionForeground": "#fff",
"tree.indentGuidesStroke": "#b7b7b7"
},
"workbench.commandPalette.history": 50,
"workbench.commandPalette.preserveInput": false,
"workbench.editor.centeredLayoutAutoResize": true,
"workbench.editor.closeEmptyGroups": true,
"workbench.editor.closeOnFileDelete": true,
"workbench.editor.enablePreview": true,
"workbench.editor.enablePreviewFromQuickOpen": true,
"workbench.editor.focusRecentEditorAfterClose": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.labelFormat": "default",
"workbench.editor.limit.enabled": false,
"workbench.editor.limit.perEditorGroup": false,
"workbench.editor.limit.value": 10,
"workbench.editor.mouseBackForwardToNavigate": true,
"workbench.editor.openPositioning": "right",
"workbench.editor.openSideBySideDirection": "right",
"workbench.editor.restoreViewState": true,
"workbench.editor.revealIfOpen": false,
"workbench.editor.scrollToSwitchTabs": false,
"workbench.editor.showIcons": true,
"workbench.editor.splitSizing": "distribute",
"workbench.editor.tabSizing": "fit",
"workbench.editor.titleScrollbarSizing": "default",
"workbench.editor.untitled.labelFormat": "content",
"workbench.enableExperiments": true,
"workbench.list.horizontalScrolling": false,
"workbench.list.multiSelectModifier": "ctrlCmd",
"workbench.list.openMode": "singleClick",
"workbench.panel.defaultLocation": "bottom",
"workbench.preferredDarkColorTheme": "Default Dark+",
"workbench.preferredHighContrastColorTheme": "Default High Contrast",
"workbench.preferredLightColorTheme": "Default Light+",
"workbench.quickOpen.closeOnFocusLost": true,
"workbench.quickOpen.preserveInput": false,
"workbench.settings.editor": "ui",
"workbench.settings.openDefaultKeybindings": false,
"workbench.settings.openDefaultSettings": false,
"workbench.settings.useSplitJSON": false,
"workbench.startupEditor": "welcomePage",
"workbench.tips.enabled": true,
"workbench.tree.indent": 14,
"workbench.tree.renderIndentGuides": "always",
"workbench.view.alwaysShowHeaderActions": false,
"workbench.settings.enableNaturalLanguageSearch": true,
"workbench.settings.settingsSearchTocBehavior": "filter",
"workbench.list.smoothScrolling": true,
"workbench.editor.wrapTabs": true,
"workbench.iconTheme": "material-icon-theme",
// updated 2024-01-09 02:09
// https://github.com/antfu/vscode-file-nesting-config
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
"explorer.fileNesting.patterns": {
"*.asax": "$(capture).*.cs, $(capture).*.vb",
"*.ascx": "$(capture).*.cs, $(capture).*.vb",
"*.ashx": "$(capture).*.cs, $(capture).*.vb",
"*.aspx": "$(capture).*.cs, $(capture).*.vb",
"*.axaml": "$(capture).axaml.cs",
"*.bloc.dart": "$(capture).event.dart, $(capture).state.dart",
"*.c": "$(capture).h",
"*.cc": "$(capture).hpp, $(capture).h, $(capture).hxx",
"*.cjs": "$(capture).cjs.map, $(capture).*.cjs, $(capture)_*.cjs",
"*.component.ts": "$(capture).component.html, $(capture).component.spec.ts, $(capture).component.css, $(capture).component.scss, $(capture).component.sass, $(capture).component.less",
"*.cpp": "$(capture).hpp, $(capture).h, $(capture).hxx",
"*.cs": "$(capture).*.cs",
"*.cshtml": "$(capture).cshtml.cs",
"*.csproj": "*.config, *proj.user, appsettings.*, bundleconfig.json",
"*.css": "$(capture).css.map, $(capture).*.css",
"*.cxx": "$(capture).hpp, $(capture).h, $(capture).hxx",
"*.dart": "$(capture).freezed.dart, $(capture).g.dart",
"*.ex": "$(capture).html.eex, $(capture).html.heex, $(capture).html.leex",
"*.fs": "$(capture).fs.js, $(capture).fs.js.map, $(capture).fs.jsx, $(capture).fs.ts, $(capture).fs.tsx, $(capture).fs.rs, $(capture).fs.php, $(capture).fs.dart",
"*.go": "$(capture)_test.go",
"*.java": "$(capture).class",
"*.js": "$(capture).js.map, $(capture).*.js, $(capture)_*.js",
"*.jsx": "$(capture).js, $(capture).*.jsx, $(capture)_*.js, $(capture)_*.jsx, $(capture).less, $(capture).module.less",
"*.master": "$(capture).*.cs, $(capture).*.vb",
"*.mjs": "$(capture).mjs.map, $(capture).*.mjs, $(capture)_*.mjs",
"*.module.ts": "$(capture).resolver.ts, $(capture).controller.ts, $(capture).service.ts",
"*.mts": "$(capture).mts.map, $(capture).*.mts, $(capture)_*.mts",
"*.pubxml": "$(capture).pubxml.user",
"*.resx": "$(capture).*.resx, $(capture).designer.cs, $(capture).designer.vb",
"*.tex": "$(capture).acn, $(capture).acr, $(capture).alg, $(capture).aux, $(capture).bbl, $(capture).blg, $(capture).fdb_latexmk, $(capture).fls, $(capture).glg, $(capture).glo, $(capture).gls, $(capture).idx, $(capture).ind, $(capture).ist, $(capture).lof, $(capture).log, $(capture).lot, $(capture).out, $(capture).pdf, $(capture).synctex.gz, $(capture).toc, $(capture).xdv",
"*.ts": "$(capture).js, $(capture).d.ts.map, $(capture).*.ts, $(capture)_*.js, $(capture)_*.ts",
"*.tsx": "$(capture).ts, $(capture).*.tsx, $(capture)_*.ts, $(capture)_*.tsx, $(capture).less, $(capture).module.less, $(capture).scss, $(capture).module.scss",
"*.vbproj": "*.config, *proj.user, appsettings.*, bundleconfig.json",
"*.vue": "$(capture).*.ts, $(capture).*.js, $(capture).story.vue",
"*.xaml": "$(capture).xaml.cs",
"+layout.svelte": "+layout.ts,+layout.ts,+layout.js,+layout.server.ts,+layout.server.js,+layout.gql",
"+page.svelte": "+page.server.ts,+page.server.js,+page.ts,+page.js,+page.gql",
"page.tsx": "loading.tsx,error.tsx,not-found.tsx",
".clang-tidy": ".clang-format, .clangd, compile_commands.json",
".env": "*.env, .env.*, .envrc, env.d.ts",
".gitignore": ".gitattributes, .gitmodules, .gitmessage, .mailmap, .git-blame*",
".project": ".classpath",
"BUILD.bazel": "*.bzl, *.bazel, *.bazelrc, bazel.rc, .bazelignore, .bazelproject, WORKSPACE",
"CMakeLists.txt": "*.cmake, *.cmake.in, .cmake-format.yaml, CMakePresets.json, CMakeCache.txt",
"Cargo.toml": ".clippy.toml, .rustfmt.toml, cargo.lock, clippy.toml, cross.toml, rust-toolchain.toml, rustfmt.toml",
"Dockerfile": "*.dockerfile, .devcontainer.*, .dockerignore, docker-compose.*, dockerfile*",
"I*.cs": "$(capture).cs",
"Pipfile": ".editorconfig, .flake8, .isort.cfg, .python-version, Pipfile, Pipfile.lock, requirements*.in, requirements*.pip, requirements*.txt, tox.ini",
"README*": "AUTHORS, Authors, BACKERS*, Backers*, CHANGELOG*, CITATION*, CODEOWNERS, CODE_OF_CONDUCT*, CONTRIBUTING*, CONTRIBUTORS, COPYING*, CREDITS, Changelog*, Citation*, Code_Of_Conduct*, Codeowners, Contributing*, Contributors, Copying*, Credits, GOVERNANCE.MD, Governance.md, HISTORY.MD, History.md, LICENSE*, License*, MAINTAINERS, Maintainers, README*, Readme*, SECURITY.MD, SPONSORS*, Security.md, Sponsors*, authors, backers*, changelog*, citation*, code_of_conduct*, codeowners, contributing*, contributors, copying*, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors*",
"Readme*": "AUTHORS, Authors, BACKERS*, Backers*, CHANGELOG*, CITATION*, CODEOWNERS, CODE_OF_CONDUCT*, CONTRIBUTING*, CONTRIBUTORS, COPYING*, CREDITS, Changelog*, Citation*, Code_Of_Conduct*, Codeowners, Contributing*, Contributors, Copying*, Credits, GOVERNANCE.MD, Governance.md, HISTORY.MD, History.md, LICENSE*, License*, MAINTAINERS, Maintainers, README*, Readme*, SECURITY.MD, SPONSORS*, Security.md, Sponsors*, authors, backers*, changelog*, citation*, code_of_conduct*, codeowners, contributing*, contributors, copying*, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors*",
"artisan": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, server.php, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, webpack.mix.js, windi.config.*",
"astro.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*",
"composer.json": ".php*.cache, composer.lock, phpunit.xml*, psalm*.xml",
"default.nix": "shell.nix",
"deno.json*": "*.env, .env.*, .envrc, api-extractor.json, deno.lock, env.d.ts, import-map.json, import_map.json, jsconfig.*, tsconfig.*, tsdoc.*",
"flake.nix": "flake.lock",
"gatsby-config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, gatsby-browser.*, gatsby-node.*, gatsby-ssr.*, gatsby-transformer.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*",
"gemfile": ".ruby-version, gemfile.lock",
"go.mod": ".air*, go.sum",
"go.work": "go.work.sum",
"hatch.toml": ".editorconfig, .flake8, .isort.cfg, .python-version, hatch.toml, requirements*.in, requirements*.pip, requirements*.txt, tox.ini",
"mix.exs": ".credo.exs, .dialyzer_ignore.exs, .formatter.exs, .iex.exs, .tool-versions, mix.lock",
"next.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, next-env.d.ts, next-i18next.config.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*",
"nuxt.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .nuxtignore, .nuxtrc, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*",
"package.json": ".browserslist*, .circleci*, .commitlint*, .cz-config.js, .czrc, .dlint.json, .dprint.json*, .editorconfig, .eslint*, .firebase*, .flowconfig, .github*, .gitlab*, .gitmojirc.json, .gitpod*, .huskyrc*, .jslint*, .knip.*, .lintstagedrc*, .markdownlint*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnp.*, .pnpm*, .prettier*, .release-please*.json, .releaserc*, .sentry*, .simple-git-hooks*, .stackblitz*, .styleci*, .stylelint*, .tazerc*, .textlint*, .tool-versions, .travis*, .versionrc*, .vscode*, .watchman*, .xo-config*, .yamllint*, .yarnrc*, Procfile, apollo.config.*, appveyor*, azure-pipelines*, biome.json, bower.json, build.config.*, bun.lockb, commitlint*, crowdin*, dangerfile*, dlint.json, dprint.json*, electron-builder.*, eslint*, firebase.json, grunt*, gulp*, jenkins*, knip.*, lerna*, lint-staged*, nest-cli.*, netlify*, nodemon*, npm-shrinkwrap.json, nx.*, package-lock.json, package.nls*.json, phpcs.xml, pm2.*, pnpm*, prettier*, pullapprove*, pyrightconfig.json, release-please*.json, release-tasks.sh, release.config.*, renovate*, rollup.config.*, rspack*, simple-git-hooks*, git-hooks*, sonar-project.properties, stylelint*, tslint*, tsup.config.*, turbo*, typedoc*, unlighthouse*, vercel*, vetur.config.*, webpack*, workspace.json, xo.config.*, yarn*, svgtocss.config*",
"pubspec.yaml": ".metadata, .packages, all_lint_rules.yaml, analysis_options.yaml, build.yaml, pubspec.lock, pubspec_overrides.yaml",
"pyproject.toml": ".editorconfig, .flake8, .isort.cfg, .pdm-python, .pdm.toml, .python-version, MANIFEST.in, Pipfile, Pipfile.lock, hatch.toml, pdm.lock, poetry.lock, pyproject.toml, requirements*.in, requirements*.pip, requirements*.txt, setup.cfg, setup.py, tox.ini",
"quasar.conf.js": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, quasar.extensions.json, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*",
"readme*": "AUTHORS, Authors, BACKERS*, Backers*, CHANGELOG*, CITATION*, CODEOWNERS, CODE_OF_CONDUCT*, CONTRIBUTING*, CONTRIBUTORS, COPYING*, CREDITS, Changelog*, Citation*, Code_Of_Conduct*, Codeowners, Contributing*, Contributors, Copying*, Credits, GOVERNANCE.MD, Governance.md, HISTORY.MD, History.md, LICENSE*, License*, MAINTAINERS, Maintainers, README*, Readme*, SECURITY.MD, SPONSORS*, Security.md, Sponsors*, authors, backers*, changelog*, citation*, code_of_conduct*, codeowners, contributing*, contributors, copying*, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors*",
"remix.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, remix.*, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*",
"requirements.txt": ".editorconfig, .flake8, .isort.cfg, .python-version, requirements*.in, requirements*.pip, requirements*.txt, tox.ini",
"rush.json": ".browserslist*, .circleci*, .commitlint*, .cz-config.js, .czrc, .dlint.json, .dprint.json*, .editorconfig, .eslint*, .firebase*, .flowconfig, .github*, .gitlab*, .gitmojirc.json, .gitpod*, .huskyrc*, .jslint*, .knip.*, .lintstagedrc*, .markdownlint*, .node-version, .nodemon*, .npm*, .nvmrc, .pm2*, .pnp.*, .pnpm*, .prettier*, .release-please*.json, .releaserc*, .sentry*, .simple-git-hooks*, .stackblitz*, .styleci*, .stylelint*, .tazerc*, .textlint*, .tool-versions, .travis*, .versionrc*, .vscode*, .watchman*, .xo-config*, .yamllint*, .yarnrc*, Procfile, apollo.config.*, appveyor*, azure-pipelines*, biome.json, bower.json, build.config.*, bun.lockb, commitlint*, crowdin*, dangerfile*, dlint.json, dprint.json*, electron-builder.*, eslint*, firebase.json, grunt*, gulp*, jenkins*, knip.*, lerna*, lint-staged*, nest-cli.*, netlify*, nodemon*, npm-shrinkwrap.json, nx.*, package-lock.json, package.nls*.json, phpcs.xml, pm2.*, pnpm*, prettier*, pullapprove*, pyrightconfig.json, release-please*.json, release-tasks.sh, release.config.*, renovate*, rollup.config.*, rspack*, simple-git-hooks*, sonar-project.properties, stylelint*, tslint*, tsup.config.*, turbo*, typedoc*, unlighthouse*, vercel*, vetur.config.*, webpack*, workspace.json, xo.config.*, yarn*",
"setup.cfg": ".editorconfig, .flake8, .isort.cfg, .python-version, MANIFEST.in, requirements*.in, requirements*.pip, requirements*.txt, setup.cfg, tox.ini",
"setup.py": ".editorconfig, .flake8, .isort.cfg, .python-version, MANIFEST.in, requirements*.in, requirements*.pip, requirements*.txt, setup.cfg, setup.py, tox.ini",
"shims.d.ts": "*.d.ts",
"svelte.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, houdini.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, mdsvex.config.js, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vite.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*",
"vite.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*",
"vue.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, i18n.config.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, panda.config.*, playwright.config.*, postcss.config.*, puppeteer.config.*, rspack.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, uno.config.*, unocss.config.*, vitest.config.*, vuetify.config.*, webpack.config.*, windi.config.*"
},
// File
"files.associations": {
"*.mdx": "markdown"
},
"files.autoGuessEncoding": false,
"files.autoSaveDelay": 1000,
"files.defaultLanguage": "",
"files.enableTrash": true,
"files.encoding": "utf8",
"files.eol": "auto",
"files.exclude": {
"**/.cache": true,
"**/.DS_Store": true,
"**/.eslintcache": true,
"**/.git": true,
"**/.hg": true,
"**/.nuxt": true,
"**/.output": true,
"**/.pnpm": true,
"**/.svn": true,
"**/.swc": true,
"**/.yarn": true,
"**/bower_components": true,
"**/CVS": true,
"**/logs": true,
"**/package-lock.json": true,
"**/pnpm-lock.yaml": true,
"**/tmp": true,
"**/yarn.lock": true
},
"files.hotExit": "onExit",
"files.insertFinalNewline": true,
"files.participants.timeout": 5000,
"files.restoreUndoStack": true,
"files.saveConflictResolution": "askUser",
"files.simpleDialog.enable": false,
"files.trimFinalNewlines": false,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true
},
// zenMode
"zenMode.centerLayout": true,
"zenMode.fullScreen": true,
"zenMode.hideActivityBar": true,
"zenMode.hideLineNumbers": true,
"zenMode.hideStatusBar": true,
"zenMode.restore": false,
"zenMode.silentNotifications": true,
"zenMode.showTabs": "single",
// explorer
"explorer.autoReveal": true,
"explorer.compactFolders": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.decorations.badges": true,
"explorer.decorations.colors": true,
"explorer.enableDragAndDrop": true,
"explorer.incrementalNaming": "simple",
"explorer.openEditors.visible": 9,
"explorer.sortOrder": "default",
// search
"search.actionsPosition": "auto",
"search.collapseResults": "alwaysExpand",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/dist": true,
"**/build": true,
"**/package-lock.json": true,
"**/yarn.lock": true
},
"search.followSymlinks": true,
"search.quickOpen.history.filterSortOrder": "default",
"search.quickOpen.includeHistory": true,
"search.quickOpen.includeSymbols": false,
"search.searchEditor.doubleClickBehaviour": "goToLocation",
"search.searchOnType": true,
"search.searchOnTypeDebouncePeriod": 300,
"search.seedOnFocus": false,
"search.seedWithNearestWord": false,
"search.showLineNumbers": false,
"search.smartCase": false,
"search.sortOrder": "default",
"search.useGlobalIgnoreFiles": false,
"search.useIgnoreFiles": true,
"search.useReplacePreview": true,
// html
"html.autoClosingTags": true,
"html.customData": [],
"html.format.contentUnformatted": "pre,code,textarea",
"html.format.enable": true,
"html.format.extraLiners": "head, body, /html",
"html.format.indentHandlebars": false,
"html.format.indentInnerHtml": false,
"html.format.maxPreserveNewLines": null,
"html.format.preserveNewLines": true,
"html.format.unformatted": "wbr",
"html.format.wrapAttributes": "auto",
"html.format.wrapLineLength": 120,
"html.suggest.html5": true,
"html.trace.server": "off",
"html.validate.scripts": true,
"html.validate.styles": true,
// json
"json.format.enable": true,
"json.maxItemsComputed": 5000,
"json.schemas": [],
"json.trace.server": "off",
// markdown
"markdown.links.openLocation": "currentGroup",
"markdown.preview.breaks": false,
"markdown.preview.doubleClickToSwitchToEditor": true,
"markdown.preview.fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', 'Ubuntu', 'Droid Sans', sans-serif",
"markdown.preview.fontSize": 14,
"markdown.preview.lineHeight": 1.6,
"markdown.preview.linkify": true,
"markdown.preview.markEditorSelection": true,
"markdown.preview.openMarkdownLinks": "inPreview",
"markdown.preview.scrollEditorWithPreview": true,
"markdown.preview.scrollPreviewWithEditor": true,
"markdown.styles": [],
// javascript
"javascript.autoClosingTags": true,
"javascript.format.enable": true,
"javascript.format.insertSpaceAfterCommaDelimiter": true,
"javascript.format.insertSpaceAfterConstructor": false,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"javascript.format.insertSpaceAfterSemicolonInForStatements": true,
"javascript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"javascript.format.placeOpenBraceOnNewLineForFunctions": false,
"javascript.format.semicolons": "ignore",
"javascript.preferences.importModuleSpecifier": "non-relative",
"javascript.preferences.importModuleSpecifierEnding": "auto",
"javascript.preferences.quoteStyle": "auto",
"javascript.preferences.useAliasesForRenames": true,
"javascript.referencesCodeLens.enabled": false,
"javascript.referencesCodeLens.showOnAllFunctions": false,
"javascript.suggest.autoImports": true,
"javascript.suggest.completeFunctionCalls": false,
"javascript.suggest.completeJSDocs": true,
"javascript.suggest.enabled": true,
"javascript.suggest.includeAutomaticOptionalChainCompletions": true,
"javascript.suggest.names": true,
"javascript.suggest.paths": true,
"javascript.suggestionActions.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.validate.enable": true,
"typescript.autoClosingTags": true,
"typescript.check.npmIsInstalled": true,
"typescript.disableAutomaticTypeAcquisition": false,
"typescript.enablePromptUseWorkspaceTsdk": false,
"typescript.format.enable": true,
"typescript.format.insertSpaceAfterCommaDelimiter": true,
"typescript.format.insertSpaceAfterConstructor": false,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"typescript.format.insertSpaceAfterSemicolonInForStatements": true,
"typescript.format.insertSpaceAfterTypeAssertion": false,
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": false,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"typescript.format.placeOpenBraceOnNewLineForFunctions": false,
"typescript.format.semicolons": "ignore",
"typescript.implementationsCodeLens.enabled": false,
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.importModuleSpecifierEnding": "auto",
"typescript.preferences.quoteStyle": "auto",
"typescript.preferences.useAliasesForRenames": true,
"typescript.referencesCodeLens.enabled": false,
"typescript.referencesCodeLens.showOnAllFunctions": false,
"typescript.reportStyleChecksAsWarnings": true,
"typescript.suggest.autoImports": true,
"typescript.suggest.completeFunctionCalls": false,
"typescript.suggest.completeJSDocs": true,
"typescript.suggest.enabled": true,
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
"typescript.suggest.paths": true,
"typescript.suggestionActions.enabled": true,
"typescript.surveys.enabled": true,
"typescript.tsc.autoDetect": "on",
"typescript.tsserver.experimental.enableProjectDiagnostics": false,
"typescript.tsserver.log": "off",
"typescript.tsserver.maxTsServerMemory": 3072,
"typescript.tsserver.watchOptions": {},
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.validate.enable": true,
"typescript.workspaceSymbols.scope": "allOpenProjects",
"css.completion.completePropertyWithSemicolon": true,
"css.completion.triggerPropertyValueCompletion": true,
"css.customData": [],
"css.lint.argumentsInColorFunction": "error",
"css.lint.boxModel": "ignore",
"css.lint.compatibleVendorPrefixes": "ignore",
"css.lint.duplicateProperties": "ignore",
"css.lint.emptyRules": "warning",
"css.lint.float": "ignore",
"css.lint.fontFaceProperties": "warning",
"css.lint.hexColorLength": "error",
"css.lint.idSelector": "ignore",
"css.lint.ieHack": "ignore",
"css.lint.important": "ignore",
"css.lint.importStatement": "ignore",
"css.lint.propertyIgnoredDueToDisplay": "warning",
"css.lint.universalSelector": "ignore",
"css.lint.unknownAtRules": "warning",
"css.lint.unknownProperties": "warning",
"css.lint.unknownVendorSpecificProperties": "ignore",
"css.lint.validProperties": [],
"css.lint.vendorPrefix": "warning",
"css.lint.zeroUnits": "ignore",
"css.trace.server": "off",
"css.validate": true,
"scss.completion.completePropertyWithSemicolon": true,
"scss.completion.triggerPropertyValueCompletion": true,
"scss.lint.argumentsInColorFunction": "error",
"scss.lint.boxModel": "ignore",
"scss.lint.compatibleVendorPrefixes": "ignore",
"scss.lint.duplicateProperties": "ignore",
"scss.lint.emptyRules": "warning",
"scss.lint.float": "ignore",
"scss.lint.fontFaceProperties": "warning",
"scss.lint.hexColorLength": "error",
"scss.lint.idSelector": "ignore",
"scss.lint.ieHack": "ignore",
"scss.lint.important": "ignore",
"scss.lint.importStatement": "ignore",
"scss.lint.propertyIgnoredDueToDisplay": "warning",
"scss.lint.universalSelector": "ignore",
"scss.lint.unknownAtRules": "warning",
"scss.lint.unknownProperties": "warning",
"scss.lint.unknownVendorSpecificProperties": "ignore",
"scss.lint.validProperties": [],
"scss.lint.vendorPrefix": "warning",
"scss.lint.zeroUnits": "ignore",
"scss.validate": true,
"extensions.autoCheckUpdates": true,
"extensions.autoUpdate": "onlyEnabledExtensions",
"extensions.closeExtensionDetailsOnViewChange": false,
"extensions.confirmedUriHandlerExtensionIds": [],
"extensions.ignoreRecommendations": false,
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.explorerKind": "integrated",
"terminal.external.linuxExec": "xterm",
"terminal.external.osxExec": "Terminal.app",
"terminal.external.windowsExec": "C:\\Windows\\System32\\cmd.exe",
"terminal.integrated.allowChords": true,
"terminal.integrated.allowMnemonics": false,
"terminal.integrated.commandsToSkipShell": [],
"terminal.integrated.copyOnSelection": false,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyle": "block",
"terminal.integrated.cursorWidth": 1,
"terminal.integrated.cwd": "",
"terminal.integrated.detectLocale": "auto",
"terminal.integrated.drawBoldTextInBrightColors": true,
"terminal.integrated.enableBell": false,
"terminal.integrated.env.linux": {},
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"terminal.integrated.env.windows": {},
"terminal.integrated.environmentChangesIndicator": "warnonly",
"terminal.integrated.fastScrollSensitivity": 5,
"terminal.integrated.fontFamily": "'FiraCode Nerd Font'",
"terminal.integrated.fontSize": 15,
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.fontWeightBold": "bold",
"terminal.integrated.inheritEnv": true,
"terminal.integrated.letterSpacing": 0,
"terminal.integrated.lineHeight": 1,
"terminal.integrated.macOptionClickForcesSelection": false,
"terminal.integrated.macOptionIsMeta": false,
"terminal.integrated.minimumContrastRatio": 1,
"terminal.integrated.mouseWheelScrollSensitivity": 1,
"terminal.integrated.rightClickBehavior": "copyPaste",
"terminal.integrated.scrollback": 5000,
"terminal.integrated.showExitAlert": true,
"terminal.integrated.splitCwd": "inherited",
"terminal.integrated.unicodeVersion": "11",
"terminal.integrated.windowsEnableConpty": true,
"terminal.integrated.wordSeparators": " ()[]{}',\"`─",
"breadcrumbs.enabled": true,
"outline.icons": true,
"outline.problems.badges": true,
"outline.problems.colors": true,
"outline.problems.enabled": true,
"outline.showArrays": true,
"outline.showBooleans": true,
"outline.showClasses": true,
"outline.showConstants": true,
"outline.showConstructors": true,
"outline.showEnumMembers": true,
"outline.showEnums": true,
"outline.showEvents": true,
"outline.showFields": true,
"outline.showFiles": true,
"outline.showFunctions": true,
"outline.showInterfaces": true,
"outline.showKeys": true,
"outline.showMethods": true,
"outline.showModules": true,
"outline.showNamespaces": true,
"outline.showNull": true,
"outline.showNumbers": true,
"outline.showObjects": true,
"outline.showOperators": true,
"outline.showPackages": true,
"outline.showProperties": true,
"outline.showStrings": true,
"outline.showStructs": true,
"outline.showTypeParameters": true,
"outline.showVariables": true,
"[css]": {
"editor.suggest.insertMode": "replace"
},
"[dockerfile]": {
"editor.quickSuggestions": {
"strings": true
}
},
"[git-commit]": {
"editor.rulers": [72]
},
"[go]": {
"editor.insertSpaces": false
},
"[handlebars]": {
"editor.suggest.insertMode": "replace"
},
"[html]": {
"editor.suggest.insertMode": "replace",
"editor.defaultFormatter": "vscode.html-language-features"
},
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"[jsonc]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"[less]": {
"editor.suggest.insertMode": "replace"
},
"[makefile]": {
"editor.insertSpaces": false
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
},
"[scss]": {
"editor.suggest.insertMode": "replace",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[search-result]": {
"editor.lineNumbers": "off"
},
"[shellscript]": {
"files.eol": "\n"
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [
{
"column": 100,
"color": "#f8dc3e"
}
]
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [
{
"column": 100,
"color": "#3d90ea"
}
]
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [
{
"column": 100,
"color": "#3d90ea"
}
]
},
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [
{
"column": 100,
"color": "#f8dc3e"
}
]
},
"emmet.excludeLanguages": ["markdown"],
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"typescript": "typescriptreact"
},
"emmet.optimizeStylesheetParsing": true,
"emmet.preferences": {},
"emmet.showAbbreviationSuggestions": true,
"emmet.showExpandedAbbreviation": "always",
"emmet.showSuggestionsAsSnippets": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.triggerExpansionOnTab": true,
"git.ignoreRebaseWarning": true,
"git.allowForcePush": false,
"git.alwaysShowStagedChangesResourceGroup": false,
"git.alwaysSignOff": false,
"git.autofetch": true,
"git.autofetchPeriod": 180,
"git.autorefresh": true,
"git.autoRepositoryDetection": true,
"git.autoStash": false,
"git.branchSortOrder": "committerdate",
"git.branchValidationRegex": "",
"git.branchWhitespaceChar": "-",
"git.confirmEmptyCommits": true,
"git.confirmForcePush": true,
"git.confirmSync": false,
"git.countBadge": "all",
"git.decorations.enabled": true,
"git.detectSubmodules": true,
"git.detectSubmodulesLimit": 10,
"git.enableCommitSigning": false,
"git.enabled": true,
"git.enableSmartCommit": true,
"git.enableStatusBarSync": true,
"git.fetchOnPull": false,
"git.ignoredRepositories": [],
"git.ignoreLegacyWarning": false,
"git.ignoreLimitWarning": false,
"git.ignoreMissingGitWarning": false,
"git.inputValidation": "warn",
"git.inputValidationLength": 72,
"git.inputValidationSubjectLength": 50,
"git.openDiffOnClick": true,
"git.postCommitCommand": "none",
"git.promptToSaveFilesBeforeCommit": "always",
"git.pullTags": true,
"git.rebaseWhenSync": false,
"git.scanRepositories": [],
"git.showCommitInput": true,
"git.showInlineOpenFileAction": true,
"git.showProgress": true,
"git.showPushSuccessNotification": false,
"git.smartCommitChanges": "all",
"git.suggestSmartCommit": false,
"git.supportCancellation": false,
"git.terminalAuthentication": true,
"git.untrackedChanges": "mixed",
"git.useForcePushWithLease": true,
"merge-conflict.autoNavigateNextConflict.enabled": false,
"merge-conflict.codeLens.enabled": true,
"merge-conflict.decorators.enabled": true,
"merge-conflict.diffViewPosition": "Current",
"eslint.lintTask.enable": true,
"eslint.codeAction.disableRuleComment": {
"enable": true,
"location": "separateLine"
},
"eslint.codeAction.showDocumentation": {
"enable": true
},
"eslint.codeActionsOnSave.mode": "all",
"eslint.debug": false,
"eslint.enable": true,
"eslint.format.enable": true,
"eslint.lintTask.options": ".",
"eslint.migration.2_x": "on",
"eslint.onIgnoredFiles": "off",
"eslint.options": {},
"eslint.probe": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue",
"markdown"
],
"eslint.quiet": false,
"eslint.run": "onType",
"eslint.trace.server": "off",
"eslint.validate": [],
"eslint.workingDirectories": [],
"prettier.arrowParens": "always",
"prettier.bracketSpacing": true,
"prettier.configPath": "",
"prettier.endOfLine": "lf",
"prettier.htmlWhitespaceSensitivity": "css",
"prettier.ignorePath": ".prettierignore",
"prettier.insertPragma": false,
"prettier.bracketSameLine": false,
"prettier.jsxSingleQuote": true,
"prettier.prettierPath": "",
"prettier.printWidth": 80,
"prettier.quoteProps": "as-needed",
"prettier.requireConfig": true,
"prettier.resolveGlobalModules": false,
"prettier.semi": true,
"prettier.singleQuote": true,
"prettier.tabWidth": 2,
"prettier.trailingComma": "es5",
"prettier.useEditorConfig": true,
"prettier.useTabs": false,
"prettier.vueIndentScriptAndStyle": false,
"prettier.withNodeModules": false,
"color-highlight.enable": true,
"color-highlight.languages": ["*"],
"color-highlight.markerType": "underline",
"color-highlight.markRuler": true,
"color-highlight.matchWords": false,
"color-highlight.sass.includePaths": [],
"indentRainbow.colors": [
"rgb(255, 0, 117, 0.1)",
"rgb(23, 39, 116, 0.1)",
"rgb(119, 217, 112, 0.1)",
"rgb(238, 238, 238, 0.1)"
],
"indentRainbow.errorColor": "rgba(255,0,0,0.6)",
"indentRainbow.excludedLanguages": ["plaintext"],
"indentRainbow.ignoreErrorLanguages": ["markdown"],
"indentRainbow.ignoreLinePatterns": ["/[ \t]* [*]/g", "/[ \t]+[/]{2}/g"],
"indentRainbow.includedLanguages": [],
"indentRainbow.indentSetter": {},
"indentRainbow.tabmixColor": "rgba(128,32,96,0.6)",
"indentRainbow.updateDelay": 100,
"cSpell.allowCompoundWords": true,
"cSpell.language": "en,en-US",
"security.workspace.trust.untrustedFiles": "open",
"wakatime.apiKey": "waka_c21c2fe7-0597-428d-b2e6-16ec769bd5dd",
"folderTemplates.structures": [
{
"name": "My Custom Template",
"structure": [
{
"fileName": "<FTName>.tsx",
"template": "Typescript Functional Component"
},
{
"fileName": "index.module.scss",
"template": ".container<FTName> {}"
}
]
}
],
"folderTemplates.fileTemplates": {
"Typescript Functional Component": [
"import React from 'react';",
"",
"import styles from './index.module.scss';",
"",
"const <FTName> = () => {",
" return <div className={styles.container<FTName>}><FTName></div>",
"};",
"",
"export default <FTName>;"
]
},
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false
},
"svg.preview.mode": "svg",
"javascript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.enumMemberValues.enabled": true,
"javascript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"iconify.annotations": false,
"iconify.inplace": false,
"errorLens.enabledDiagnosticLevels": [
"warning",
"error"
],
"errorLens.excludeBySource": [
"cSpell",
"Grammarly",
"eslint"
],
"i18n-preview.annotations": false,
"color-preview.annotations": false,
"window.zoomLevel": -1,
"window.customTitleBarVisibility": "never"
}