-
Notifications
You must be signed in to change notification settings - Fork 8
/
sublime-package.json
1300 lines (1300 loc) · 64.1 KB
/
sublime-package.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
{
"contributions": {
"settings": [
{
"file_patterns": [
"/LSP-volar.sublime-settings"
],
"schema": {
"$id": "sublime://settings/LSP-volar",
"definitions": {
"PluginConfig": {
"properties": {
"initializationOptions": {
"additionalProperties": false,
"properties": {
"additionalExtensions": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "List any additional file extensions that should be processed as Vue files."
},
"configFilePath": {
"type": "string",
"default": "./volar.config.js",
"description": "Path to volar.config.js."
},
"diagnosticModel": {
"type": "integer",
"default": 2,
"enum": [
1,
2
],
"enumDescriptions": [
"Diagnostic push by language server.",
"Diagnostic pull by language client."
],
"description": "Diagnostic update model."
},
"fullCompletionList": {
"type": "boolean",
"default": false,
"description": "Enable this option if you want to get complete CompletionList in language client. (Disable for better performance)"
},
"maxFileSize": {
"type": "number",
"default": 20971520,
"description": "Maximum file size for Vue Server to load. (default: 20MB)"
},
"json.customBlockSchemaUrls": {
"type": "object"
},
"reverseConfigFilePriority": {
"type": "boolean",
"default": false,
"description": "Reverse priority for tsconfig pickup."
},
"typescript.tsdk": {
"type": "string",
"description": "Path to tsserver's lib directory."
},
"ignoreTriggerCharacters": {
"type": "array",
"items": {
"type": "string",
"maxLength": 1
},
"default": [],
"description": "Defines which auto-complete popup trigger characters that Volar defines are allowed.\nBy default all Volar trigger characters are disabled as ST does a better job."
},
},
},
"settings": {
"additionalProperties": false,
"properties": {
"emmet.excludeLanguages": {
"default": [
"markdown"
],
"items": {
"type": "string"
},
"markdownDescription": "An array of languages where Emmet abbreviations should not be expanded.",
"type": "array"
},
"emmet.preferences": {
"default": {},
"markdownDescription": "Preferences used to modify behavior of some actions and resolvers of Emmet.",
"properties": {
"bem.elementSeparator": {
"default": "__",
"markdownDescription": "Element separator used for classes when using the BEM filter.",
"type": "string"
},
"bem.modifierSeparator": {
"default": "_",
"markdownDescription": "Modifier separator used for classes when using the BEM filter.",
"type": "string"
},
"css.color.short": {
"default": true,
"markdownDescription": "If `true`, color values like `#f` will be expanded to `#fff` instead of `#ffffff`.",
"type": "boolean"
},
"css.floatUnit": {
"default": "em",
"markdownDescription": "Default unit for float values.",
"type": "string"
},
"css.fuzzySearchMinScore": {
"default": 0.3,
"markdownDescription": "The minimum score (from 0 to 1) that fuzzy-matched abbreviation should achieve. Lower values may produce many false-positive matches, higher values may reduce possible matches.",
"type": "number"
},
"css.intUnit": {
"default": "px",
"markdownDescription": "Default unit for integer values.",
"type": "string"
},
"css.mozProperties": {
"default": null,
"markdownDescription": "Comma separated CSS properties that get the 'moz' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'moz' prefix.",
"type": "string"
},
"css.msProperties": {
"default": null,
"markdownDescription": "Comma separated CSS properties that get the 'ms' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'ms' prefix.",
"type": "string"
},
"css.oProperties": {
"default": null,
"markdownDescription": "Comma separated CSS properties that get the 'o' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'o' prefix.",
"type": "string"
},
"css.propertyEnd": {
"default": ";",
"markdownDescription": "Symbol to be placed at the end of CSS property when expanding CSS abbreviations.",
"type": "string"
},
"css.valueSeparator": {
"default": ": ",
"markdownDescription": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations.",
"type": "string"
},
"css.webkitProperties": {
"default": null,
"markdownDescription": "Comma separated CSS properties that get the 'webkit' vendor prefix when used in Emmet abbreviation that starts with `-`. Set to empty string to always avoid the 'webkit' prefix.",
"type": "string"
},
"filter.commentAfter": {
"default": "\n<!-- /[#ID][.CLASS] -->",
"markdownDescription": "A definition of comment that should be placed after matched element when comment filter is applied.",
"type": "string"
},
"filter.commentBefore": {
"default": "",
"markdownDescription": "A definition of comment that should be placed before matched element when comment filter is applied.",
"type": "string"
},
"filter.commentTrigger": {
"default": [
"id",
"class"
],
"markdownDescription": "A comma-separated list of attribute names that should exist in the abbreviation for the comment filter to be applied.",
"type": "array"
},
"format.forceIndentationForTags": {
"default": [
"body"
],
"markdownDescription": "An array of tag names that should always get inner indentation.",
"type": "array"
},
"format.noIndentTags": {
"default": [
"html"
],
"markdownDescription": "An array of tag names that should never get inner indentation.",
"type": "array"
},
"output.inlineBreak": {
"default": 0,
"markdownDescription": "The number of sibling inline elements needed for line breaks to be placed between those elements. If `0`, inline elements are always expanded onto a single line.",
"type": "number"
},
"output.reverseAttributes": {
"default": false,
"markdownDescription": "If `true`, reverses attribute merging directions when resolving snippets.",
"type": "boolean"
},
"output.selfClosingStyle": {
"default": "html",
"enum": [
"html",
"xhtml",
"xml"
],
"markdownDescription": "Style of self-closing tags: html (`<br>`), xml (`<br/>`) or xhtml (`<br />`).",
"type": "string"
},
"profile.allowCompactBoolean": {
"default": false,
"markdownDescription": "If `true`, compact notation of boolean attributes are produced.",
"type": "boolean"
},
"sass.propertyEnd": {
"default": "",
"markdownDescription": "Symbol to be placed at the end of CSS property when expanding CSS abbreviations in Sass files.",
"type": "string"
},
"sass.valueSeparator": {
"default": ": ",
"markdownDescription": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations in Sass files.",
"type": "string"
},
"stylus.propertyEnd": {
"default": "",
"markdownDescription": "Symbol to be placed at the end of CSS property when expanding CSS abbreviations in Stylus files.",
"type": "string"
},
"stylus.valueSeparator": {
"default": " ",
"markdownDescription": "Symbol to be placed at the between CSS property and value when expanding CSS abbreviations in Stylus files.",
"type": "string"
}
},
"type": "object"
},
"emmet.showAbbreviationSuggestions": {
"default": true,
"markdownDescription": "Shows possible Emmet abbreviations as suggestions. Not applicable in stylesheets or when emmet.showExpandedAbbreviation is set to `\"never\"`.",
"type": "boolean"
},
"emmet.showExpandedAbbreviation": {
"default": "always",
"enum": [
"never",
"always",
"inMarkupAndStylesheetFilesOnly"
],
"markdownDescription": "Shows expanded Emmet abbreviations as suggestions.\nThe option `\"inMarkupAndStylesheetFilesOnly\"` applies to html, haml, jade, slim, xml, xsl, css, scss, sass, less and stylus.\nThe option `\"always\"` applies to all parts of the file regardless of markup/css.",
"type": [
"string"
]
},
"emmet.showSuggestionsAsSnippets": {
"default": false,
"markdownDescription": "If `true`, then Emmet suggestions will show up as snippets allowing you to order them as per `#editor.snippetSuggestions#` setting.",
"type": "boolean"
},
"emmet.syntaxProfiles": {
"default": {},
"markdownDescription": "Define profile for specified syntax or use your own profile with specific rules.",
"type": "object"
},
"emmet.variables": {
"additionalProperties": {
"type": "string"
},
"default": {},
"markdownDescription": "Variables to be used in Emmet snippets.",
"properties": {
"charset": {
"default": "UTF-8",
"type": "string"
},
"lang": {
"default": "en",
"type": "string"
}
},
"type": "object"
},
"css.completion.completePropertyWithSemicolon": {
"default": true,
"description": "Insert semicolon at end of line when completing CSS properties.",
"type": "boolean"
},
"css.completion.triggerPropertyValueCompletion": {
"default": true,
"description": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.",
"type": "boolean"
},
"css.customData": {
"type": "array",
"markdownDescription": "A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\n\nLoads custom data to enhance its CSS support for the custom CSS properties, at directives, pseudo classes and pseudo elements you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.",
"default": [],
"items": {
"type": "string"
},
},
"css.format.braceStyle": {
"default": "collapse",
"enum": [
"collapse",
"expand"
],
"markdownDescription": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).",
"type": "string"
},
"css.format.enable": {
"default": true,
"description": "Enable/disable default CSS formatter.",
"type": "boolean"
},
"css.format.maxPreserveNewLines": {
"default": null,
"markdownDescription": "Maximum number of line breaks to be preserved in one chunk, when `#css.format.preserveNewLines#` is enabled.",
"type": [
"number",
"null"
]
},
"css.format.newlineBetweenRules": {
"default": true,
"markdownDescription": "Separate rulesets by a blank line.",
"type": "boolean"
},
"css.format.newlineBetweenSelectors": {
"default": true,
"markdownDescription": "Separate selectors with a new line.",
"type": "boolean"
},
"css.format.preserveNewLines": {
"default": true,
"markdownDescription": "Whether existing line breaks before elements should be preserved.",
"type": "boolean"
},
"css.format.spaceAroundSelectorSeparator": {
"default": false,
"markdownDescription": "Ensure a space character around selector separators '>', '+', '~' (e.g. `a > b`).",
"type": "boolean"
},
"css.hover.documentation": {
"default": true,
"description": "Show tag and attribute documentation in CSS hovers.",
"type": "boolean"
},
"css.hover.references": {
"default": true,
"description": "Show references to MDN in CSS hovers.",
"type": "boolean"
},
"less.completion.completePropertyWithSemicolon": {
"default": true,
"description": "Insert semicolon at end of line when completing CSS properties.",
"type": "boolean"
},
"less.completion.triggerPropertyValueCompletion": {
"default": true,
"description": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.",
"type": "boolean"
},
"less.format.braceStyle": {
"default": "collapse",
"enum": [
"collapse",
"expand"
],
"markdownDescription": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).",
"type": "string"
},
"less.format.enable": {
"default": true,
"description": "Enable/disable default LESS formatter.",
"type": "boolean"
},
"less.format.maxPreserveNewLines": {
"default": null,
"markdownDescription": "Maximum number of line breaks to be preserved in one chunk, when `#less.format.preserveNewLines#` is enabled.",
"type": [
"number",
"null"
]
},
"less.format.newlineBetweenRules": {
"default": true,
"markdownDescription": "Separate rulesets by a blank line.",
"type": "boolean"
},
"less.format.newlineBetweenSelectors": {
"default": true,
"markdownDescription": "Separate selectors with a new line.",
"type": "boolean"
},
"less.format.preserveNewLines": {
"default": true,
"markdownDescription": "Whether existing line breaks before elements should be preserved.",
"type": "boolean"
},
"less.format.spaceAroundSelectorSeparator": {
"default": false,
"markdownDescription": "Ensure a space character around selector separators '>', '+', '~' (e.g. `a > b`).",
"type": "boolean"
},
"less.hover.documentation": {
"default": true,
"description": "Show tag and attribute documentation in LESS hovers.",
"type": "boolean"
},
"less.hover.references": {
"default": true,
"description": "Show references to MDN in LESS hovers.",
"type": "boolean"
},
"scss.completion.completePropertyWithSemicolon": {
"default": true,
"description": "Insert semicolon at end of line when completing CSS properties.",
"type": "boolean"
},
"scss.completion.triggerPropertyValueCompletion": {
"default": true,
"description": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.",
"type": "boolean"
},
"scss.format.braceStyle": {
"default": "collapse",
"enum": [
"collapse",
"expand"
],
"markdownDescription": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).",
"type": "string"
},
"scss.format.enable": {
"default": true,
"description": "Enable/disable default SCSS formatter.",
"type": "boolean"
},
"scss.format.maxPreserveNewLines": {
"default": null,
"markdownDescription": "Maximum number of line breaks to be preserved in one chunk, when `#scss.format.preserveNewLines#` is enabled.",
"type": [
"number",
"null"
]
},
"scss.format.newlineBetweenRules": {
"default": true,
"markdownDescription": "Separate rulesets by a blank line.",
"type": "boolean"
},
"scss.format.newlineBetweenSelectors": {
"default": true,
"markdownDescription": "Separate selectors with a new line.",
"type": "boolean"
},
"scss.format.preserveNewLines": {
"default": true,
"markdownDescription": "Whether existing line breaks before elements should be preserved.",
"type": "boolean"
},
"scss.format.spaceAroundSelectorSeparator": {
"default": false,
"markdownDescription": "Ensure a space character around selector separators '>', '+', '~' (e.g. `a > b`).",
"type": "boolean"
},
"scss.hover.documentation": {
"default": true,
"description": "Show tag and attribute documentation in SCSS hovers.",
"type": "boolean"
},
"scss.hover.references": {
"default": true,
"description": "Show references to MDN in SCSS hovers.",
"type": "boolean"
},
"html.autoClosingTags": {
"default": true,
"description": "Enable/disable autoclosing of HTML tags.",
"type": "boolean"
},
"html.autoCreateQuotes": {
"default": true,
"description": "Enable/disable auto creation of quotes for HTML attribute assignment. The type of quotes can be configured by `#html.completion.attributeDefaultValue#`.",
"type": "boolean"
},
"html.completion.attributeDefaultValue": {
"default": "doublequotes",
"description": "Controls the default value for attributes when completion is accepted.",
"enum": [
"doublequotes",
"singlequotes",
"empty"
],
"enumDescriptions": [
"Attribute value is set to \"\".",
"Attribute value is set to ''.",
"Attribute value is not set."
],
"type": "string"
},
"html.customData": {
"type": "array",
"markdownDescription": "A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/microsoft/vscode-html-languageservice/blob/master/docs/customData.md).\n\nLoads custom data to enhance its HTML support for the custom HTML tags, attributes and attribute values you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.",
"default": [],
"items": {
"type": "string"
},
},
"html.format.contentUnformatted": {
"default": "pre,code,textarea",
"markdownDescription": "List of tags, comma separated, where the content shouldn't be reformatted. `null` defaults to the `pre` tag.",
"type": [
"string",
"null"
]
},
"html.format.enable": {
"default": true,
"description": "Enable/disable default HTML formatter.",
"type": "boolean"
},
"html.format.extraLiners": {
"default": "head, body, /html",
"markdownDescription": "List of tags, comma separated, that should have an extra newline before them. `null` defaults to `\"head, body, /html\"`.",
"type": [
"string",
"null"
]
},
"html.format.indentHandlebars": {
"default": false,
"markdownDescription": "Format and indent `{{#foo}}` and `{{/foo}}`.",
"type": "boolean"
},
"html.format.indentInnerHtml": {
"default": false,
"markdownDescription": "Indent `<head>` and `<body>` sections.",
"type": "boolean"
},
"html.format.maxPreserveNewLines": {
"default": null,
"markdownDescription": "Maximum number of line breaks to be preserved in one chunk. Use `null` for unlimited.",
"type": [
"number",
"null"
]
},
"html.format.preserveNewLines": {
"default": true,
"description": "Controls whether existing line breaks before elements should be preserved. Only works before elements, not inside tags or for text.",
"type": "boolean"
},
"html.format.templating": {
"default": false,
"description": "Honor django, erb, handlebars and php templating language tags.",
"type": "boolean"
},
"html.format.unformatted": {
"default": "wbr",
"markdownDescription": "List of tags, comma separated, that shouldn't be reformatted. `null` defaults to all tags listed at https://www.w3.org/TR/html5/dom.html#phrasing-content.",
"type": [
"string",
"null"
]
},
"html.format.unformattedContentDelimiter": {
"default": "",
"markdownDescription": "Keep text content together between this string.",
"type": "string"
},
"html.format.wrapAttributes": {
"default": "auto",
"description": "Wrap attributes.",
"enum": [
"auto",
"force",
"force-aligned",
"force-expand-multiline",
"aligned-multiple",
"preserve",
"preserve-aligned"
],
"enumDescriptions": [
"Wrap attributes only when line length is exceeded.",
"Wrap each attribute except first.",
"Wrap each attribute except first and keep aligned.",
"Wrap each attribute.",
"Wrap when line length is exceeded, align attributes vertically.",
"Preserve wrapping of attributes.",
"Preserve wrapping of attributes but align."
],
"type": "string"
},
"html.format.wrapAttributesIndentSize": {
"default": null,
"markdownDescription": "Indent wrapped attributes to after N characters. Use `null` to use the default indent size. Ignored if `#html.format.wrapAttributes#` is set to 'aligned'.",
"type": [
"number",
"null"
]
},
"html.format.wrapLineLength": {
"default": 120,
"description": "Maximum amount of characters per line (0 = disable).",
"type": "integer"
},
"html.hover.documentation": {
"default": true,
"description": "Show tag and attribute documentation in hover.",
"type": "boolean"
},
"html.hover.references": {
"default": true,
"description": "Show references to MDN in hover.",
"type": "boolean"
},
"vue.complete.casing.tags": {
"type": "string",
"enum": [
"autoKebab",
"autoPascal",
"kebab",
"pascal"
],
"enumDescriptions": [
"Auto Detect from Content (Fallback to <kebab-case> if detect failed)",
"Auto Detect from Content (Fallback to <PascalCase> if detect failed)",
"<kebab-case>",
"<PascalCase>"
],
"default": "autoPascal",
"description": "Preferred tag name case."
},
"vue.complete.casing.props": {
"type": "string",
"enum": [
"autoKebab",
"autoCamel",
"kebab",
"camel"
],
"enumDescriptions": [
"Auto Detect from Content (Fallback to :kebab-case=\"...\" if detect failed)",
"Auto Detect from Content (Fallback to :camelCase=\"...\" if detect failed)",
":kebab-case=\"...\"",
":camelCase=\"...\""
],
"default": "autoKebab",
"description": "Preferred attr name case."
},
"vue.features.complete.normalizeComponentImportName": {
"type": "boolean",
"default": true,
"description": "Normalize import name for auto import. (\"myCompVue\" -> \"MyComp\")"
},
// "vue.features.autoInsert.parentheses": {
// "type": "boolean",
// "default": true,
// "description": "Auto-wrap `()` to As Expression in interpolations for fix issue #520."
// },
// "vue.features.autoInsert.dotValue": {
// "type": "boolean",
// "default": false,
// "description": "Auto-complete Ref value with `.value`."
// },
// "vue.features.autoInsert.bracketSpacing": {
// "type": "boolean",
// "default": true,
// "description": "Auto add space between double curly brackets: {{|}} -> {{ | }}"
// },
"vue.inlayHints.missingProps": {
"type": "boolean",
"default": false,
"description": "Show inlay hints for missing required props."
},
"vue.inlayHints.inlineHandlerLeading": {
"type": "boolean",
"default": false,
"description": "Show inlay hints for event argument in inline handlers."
},
"vue.inlayHints.optionsWrapper": {
"type": "boolean",
"default": true,
"description": "Show inlay hints for component options wrapper for type support."
},
"volar.diagnostics.delay": {
"default": 200,
"description": "Delay time for diagnostics.",
"type": "number"
},
"volar.format.initialIndent": {
"type": "object",
"description": "Whether to have initial indent.",
"default": {
"html": true
},
"properties": {
"html": {
"type": "boolean",
"default": true
},
"typescript": {
"type": "boolean",
"default": false
},
"javascript": {
"type": "boolean",
"default": false
},
"typescriptreact": {
"type": "boolean",
"default": false
},
"javascriptreact": {
"type": "boolean",
"default": false
},
"css": {
"type": "boolean",
"default": false
},
"scss": {
"type": "boolean",
"default": false
},
"less": {
"type": "boolean",
"default": false
},
"sass": {
"type": "boolean",
"default": false
},
"jade": {
"type": "boolean",
"default": false
},
"json": {
"type": "boolean",
"default": false
},
"jsonc": {
"type": "boolean",
"default": false
},
"json5": {
"type": "boolean",
"default": false
}
}
},
"typescript.preferences.autoImportFileExcludePatterns": {
"items": {
"type": "string"
},
"markdownDescription": "Specify glob patterns of files to exclude from auto imports. Requires using TypeScript 4.8 or newer in the workspace.",
"type": "array"
},
"typescript.preferences.importModuleSpecifier": {
"default": "shortest",
"description": "Preferred path style for auto imports.",
"enum": [
"shortest",
"relative",
"non-relative",
"project-relative"
],
"markdownEnumDescriptions": [
"Prefers a non-relative import only if one is available that has fewer path segments than a relative import.",
"Prefers a relative path to the imported file location.",
"Prefers a non-relative import based on the `baseUrl` or `paths` configured in your `jsconfig.json` / `tsconfig.json`.",
"Prefers a non-relative import only if the relative import path would leave the package or project directory."
],
"type": "string"
},
"typescript.preferences.importModuleSpecifierEnding": {
"default": "auto",
"description": "Preferred path ending for auto imports.",
"enum": [
"auto",
"minimal",
"index",
"js"
],
"markdownEnumDescriptions": [
"Use project settings to select a default.",
"Shorten `./component/index.js` to `./component`.",
"Shorten `./component/index.js` to `./component/index`.",
"Do not shorten path endings; include the `.js` extension."
],
"type": "string"
},
"typescript.preferences.jsxAttributeCompletionStyle": {
"default": "auto",
"description": "Preferred style for JSX attribute completions.",
"enum": [
"auto",
"braces",
"none"
],
"markdownEnumDescriptions": [
"Insert `={}` or `=\"\"` after attribute names based on the prop type. See `javascript.preferences.quoteStyle` to control the type of quotes used for string attributes.",
"Insert `={}` after attribute names.",
"Only insert attribute names."
],
"type": "string"
},
"typescript.preferences.quoteStyle": {
"default": "auto",
"enum": [
"auto",
"single",
"double"
],
"markdownDescription": "Preferred quote style to use for Quick Fixes.",
"markdownEnumDescriptions": [
"Infer quote type from existing code",
"Always use single quotes: `'`",
"Always use double quotes: `\"`"
],
"type": "string"
},
"typescript.suggest.autoImports": {
"default": true,
"description": "Enable/disable auto import suggestions.",
"type": "boolean"
},
"typescript.suggest.classMemberSnippets.enabled": {
"default": true,
"description": "Enable/disable snippet completions for class members.",
"type": "boolean"
},
"typescript.suggest.completeFunctionCalls": {
"default": false,
"description": "Complete functions with their parameter signature.",
"type": "boolean"
},
"typescript.suggest.includeAutomaticOptionalChainCompletions": {
"default": true,
"description": "Enable/disable showing completions on potentially undefined values that insert an optional chain call. Requires strict null checks to be enabled.",
"type": "boolean"
},
"typescript.suggest.includeCompletionsForImportStatements": {
"default": true,
"description": "Enable/disable auto-import-style completions on partially-typed import statements.",
"type": "boolean"
},
"typescript.suggest.includeCompletionsWithSnippetText": {
"default": true,
"description": "Enable/disable snippet completions from TS Server.",
"type": "boolean"
},
"typescript.suggest.jsdoc.generateReturns": {
"default": true,
"markdownDescription": "Enable/disable generating `@returns` annotations for JSDoc templates.",
"type": "boolean"
},
"typescript.suggest.objectLiteralMethodSnippets.enabled": {
"default": true,
"description": "Enable/disable snippet completions for methods in object literals. Requires using TypeScript 4.7+ in the workspace.",
"type": "boolean"
},
"typescript.inlayHints.enumMemberValues.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable/disable inlay hints for member values in enum declarations: \n\n ```typescript\n enum MyValue {\n A /* = 0 */;\n B /* = 1 */;\n }\n ```\n \n Require TypeScript 4.4+."
},
"typescript.inlayHints.functionLikeReturnTypes.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable/disable inlay hints for implicit return types on function signatures:\n\n ```typescript\n function foo() /* :number */ {\n return Date.now();\n }\n ```\n Require TypeScript 4.4+."
},
"typescript.inlayHints.parameterTypes.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable/disable inlay hints for parameter names: \n\n ```typescript\n parseInt(/* str: */ '123', /* radix: */ 8)\n ```\n Require TypeScript 4.4+."
},
"typescript.inlayHints.parameterNames.enabled": {
"enum": [
"all",
"literals",
"none"
],
"default": "none",
"markdownEnumDescriptions": [
"Enable parameter name hints for literal and non-literal arguments.",
"Enable parameter name hints only for literal arguments.",
"Disable parameter name hints."
]
},
"typescript.inlayHints.parameterNames.suppressWhenArgumentMatchesName": {
"type": "boolean",
"default": true,
"markdownDescription": ""
},
"typescript.inlayHints.propertyDeclarationTypes.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable/disable inlay hints for implicit types on property declarations: \n\n ```typescript\n class Foo {\n prop /* :number */ = Date.now;\n }\n ```\n Require TypeScript 4.4+."
},
"typescript.inlayHints.variableTypes.enabled": {
"type": "boolean",
"default": false,
"markdownDescription": "Enable/disable inlay hints for implicit variable types: \n\n ```typescript\n const foo /* :number */ = Date.now();\n ``` \n Require TypeScript 4.4+."
},
"typescript.inlayHints.variableTypes.suppressWhenTypeMatchesName.enabled": {
"type": "boolean",
"default": true,
},
"javascript.preferences.autoImportFileExcludePatterns": {
"items": {
"type": "string"
},
"markdownDescription": "Specify glob patterns of files to exclude from auto imports. Requires using TypeScript 4.8 or newer in the workspace.",
"type": "array"
},
"javascript.preferences.importModuleSpecifier": {
"default": "shortest",
"description": "Preferred path style for auto imports.",
"enum": [
"shortest",
"relative",
"non-relative",
"project-relative"
],
"markdownEnumDescriptions": [
"Prefers a non-relative import only if one is available that has fewer path segments than a relative import.",
"Prefers a relative path to the imported file location.",
"Prefers a non-relative import based on the `baseUrl` or `paths` configured in your `jsconfig.json` / `tsconfig.json`.",
"Prefers a non-relative import only if the relative import path would leave the package or project directory."
],
"type": "string"
},
"javascript.preferences.importModuleSpecifierEnding": {
"default": "auto",
"description": "Preferred path ending for auto imports.",
"enum": [
"auto",
"minimal",
"index",
"js"
],
"markdownEnumDescriptions": [
"Use project settings to select a default.",
"Shorten `./component/index.js` to `./component`.",
"Shorten `./component/index.js` to `./component/index`.",
"Do not shorten path endings; include the `.js` extension."
],
"type": "string"
},
"javascript.preferences.jsxAttributeCompletionStyle": {
"default": "auto",
"description": "Preferred style for JSX attribute completions.",
"enum": [
"auto",
"braces",
"none"
],
"markdownEnumDescriptions": [
"Insert `={}` or `=\"\"` after attribute names based on the prop type. See `javascript.preferences.quoteStyle` to control the type of quotes used for string attributes.",
"Insert `={}` after attribute names.",
"Only insert attribute names."
],
"type": "string"
},
"javascript.preferences.quoteStyle": {
"default": "auto",
"enum": [
"auto",
"single",
"double"
],
"markdownDescription": "Preferred quote style to use for Quick Fixes.",
"markdownEnumDescriptions": [
"Infer quote type from existing code",
"Always use single quotes: `'`",
"Always use double quotes: `\"`"
],
"type": "string"
},
"javascript.suggest.autoImports": {
"default": true,
"description": "Enable/disable auto import suggestions.",
"type": "boolean"
},
"javascript.suggest.classMemberSnippets.enabled": {
"default": true,
"description": "Enable/disable snippet completions for class members.",
"type": "boolean"
},
"javascript.suggest.completeFunctionCalls": {
"default": false,
"description": "Complete functions with their parameter signature.",
"type": "boolean"
},
"javascript.suggest.includeAutomaticOptionalChainCompletions": {
"default": true,
"description": "Enable/disable showing completions on potentially undefined values that insert an optional chain call. Requires strict null checks to be enabled.",
"type": "boolean"
},
"javascript.suggest.includeCompletionsForImportStatements": {
"default": true,
"description": "Enable/disable auto-import-style completions on partially-typed import statements.",
"type": "boolean"
},