Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/css-language-features/package.json
3309 views
1
{
2
"name": "css-language-features",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "^1.77.0"
10
},
11
"icon": "icons/css.png",
12
"activationEvents": [
13
"onLanguage:css",
14
"onLanguage:less",
15
"onLanguage:scss",
16
"onCommand:_css.applyCodeAction"
17
],
18
"main": "./client/out/node/cssClientMain",
19
"browser": "./client/dist/browser/cssClientMain",
20
"capabilities": {
21
"virtualWorkspaces": true,
22
"untrustedWorkspaces": {
23
"supported": true
24
}
25
},
26
"scripts": {
27
"compile": "npx gulp compile-extension:css-language-features-client compile-extension:css-language-features-server",
28
"watch": "npx gulp watch-extension:css-language-features-client watch-extension:css-language-features-server",
29
"test": "node ../../node_modules/mocha/bin/mocha",
30
"install-client-next": "npm install vscode-languageclient@next"
31
},
32
"categories": [
33
"Programming Languages"
34
],
35
"contributes": {
36
"configuration": [
37
{
38
"order": 22,
39
"id": "css",
40
"title": "%css.title%",
41
"properties": {
42
"css.customData": {
43
"type": "array",
44
"markdownDescription": "%css.customData.desc%",
45
"default": [],
46
"items": {
47
"type": "string"
48
},
49
"scope": "resource"
50
},
51
"css.completion.triggerPropertyValueCompletion": {
52
"type": "boolean",
53
"scope": "resource",
54
"default": true,
55
"description": "%css.completion.triggerPropertyValueCompletion.desc%"
56
},
57
"css.completion.completePropertyWithSemicolon": {
58
"type": "boolean",
59
"scope": "resource",
60
"default": true,
61
"description": "%css.completion.completePropertyWithSemicolon.desc%"
62
},
63
"css.validate": {
64
"type": "boolean",
65
"scope": "resource",
66
"default": true,
67
"description": "%css.validate.desc%"
68
},
69
"css.hover.documentation": {
70
"type": "boolean",
71
"scope": "resource",
72
"default": true,
73
"description": "%css.hover.documentation%"
74
},
75
"css.hover.references": {
76
"type": "boolean",
77
"scope": "resource",
78
"default": true,
79
"description": "%css.hover.references%"
80
},
81
"css.lint.compatibleVendorPrefixes": {
82
"type": "string",
83
"scope": "resource",
84
"enum": [
85
"ignore",
86
"warning",
87
"error"
88
],
89
"default": "ignore",
90
"description": "%css.lint.compatibleVendorPrefixes.desc%"
91
},
92
"css.lint.vendorPrefix": {
93
"type": "string",
94
"scope": "resource",
95
"enum": [
96
"ignore",
97
"warning",
98
"error"
99
],
100
"default": "warning",
101
"description": "%css.lint.vendorPrefix.desc%"
102
},
103
"css.lint.duplicateProperties": {
104
"type": "string",
105
"scope": "resource",
106
"enum": [
107
"ignore",
108
"warning",
109
"error"
110
],
111
"default": "ignore",
112
"description": "%css.lint.duplicateProperties.desc%"
113
},
114
"css.lint.emptyRules": {
115
"type": "string",
116
"scope": "resource",
117
"enum": [
118
"ignore",
119
"warning",
120
"error"
121
],
122
"default": "warning",
123
"description": "%css.lint.emptyRules.desc%"
124
},
125
"css.lint.importStatement": {
126
"type": "string",
127
"scope": "resource",
128
"enum": [
129
"ignore",
130
"warning",
131
"error"
132
],
133
"default": "ignore",
134
"description": "%css.lint.importStatement.desc%"
135
},
136
"css.lint.boxModel": {
137
"type": "string",
138
"scope": "resource",
139
"enum": [
140
"ignore",
141
"warning",
142
"error"
143
],
144
"default": "ignore",
145
"markdownDescription": "%css.lint.boxModel.desc%"
146
},
147
"css.lint.universalSelector": {
148
"type": "string",
149
"scope": "resource",
150
"enum": [
151
"ignore",
152
"warning",
153
"error"
154
],
155
"default": "ignore",
156
"markdownDescription": "%css.lint.universalSelector.desc%"
157
},
158
"css.lint.zeroUnits": {
159
"type": "string",
160
"scope": "resource",
161
"enum": [
162
"ignore",
163
"warning",
164
"error"
165
],
166
"default": "ignore",
167
"description": "%css.lint.zeroUnits.desc%"
168
},
169
"css.lint.fontFaceProperties": {
170
"type": "string",
171
"scope": "resource",
172
"enum": [
173
"ignore",
174
"warning",
175
"error"
176
],
177
"default": "warning",
178
"markdownDescription": "%css.lint.fontFaceProperties.desc%"
179
},
180
"css.lint.hexColorLength": {
181
"type": "string",
182
"scope": "resource",
183
"enum": [
184
"ignore",
185
"warning",
186
"error"
187
],
188
"default": "error",
189
"description": "%css.lint.hexColorLength.desc%"
190
},
191
"css.lint.argumentsInColorFunction": {
192
"type": "string",
193
"scope": "resource",
194
"enum": [
195
"ignore",
196
"warning",
197
"error"
198
],
199
"default": "error",
200
"description": "%css.lint.argumentsInColorFunction.desc%"
201
},
202
"css.lint.unknownProperties": {
203
"type": "string",
204
"scope": "resource",
205
"enum": [
206
"ignore",
207
"warning",
208
"error"
209
],
210
"default": "warning",
211
"description": "%css.lint.unknownProperties.desc%"
212
},
213
"css.lint.validProperties": {
214
"type": "array",
215
"uniqueItems": true,
216
"items": {
217
"type": "string"
218
},
219
"scope": "resource",
220
"default": [],
221
"description": "%css.lint.validProperties.desc%"
222
},
223
"css.lint.ieHack": {
224
"type": "string",
225
"scope": "resource",
226
"enum": [
227
"ignore",
228
"warning",
229
"error"
230
],
231
"default": "ignore",
232
"description": "%css.lint.ieHack.desc%"
233
},
234
"css.lint.unknownVendorSpecificProperties": {
235
"type": "string",
236
"scope": "resource",
237
"enum": [
238
"ignore",
239
"warning",
240
"error"
241
],
242
"default": "ignore",
243
"description": "%css.lint.unknownVendorSpecificProperties.desc%"
244
},
245
"css.lint.propertyIgnoredDueToDisplay": {
246
"type": "string",
247
"scope": "resource",
248
"enum": [
249
"ignore",
250
"warning",
251
"error"
252
],
253
"default": "warning",
254
"markdownDescription": "%css.lint.propertyIgnoredDueToDisplay.desc%"
255
},
256
"css.lint.important": {
257
"type": "string",
258
"scope": "resource",
259
"enum": [
260
"ignore",
261
"warning",
262
"error"
263
],
264
"default": "ignore",
265
"markdownDescription": "%css.lint.important.desc%"
266
},
267
"css.lint.float": {
268
"type": "string",
269
"scope": "resource",
270
"enum": [
271
"ignore",
272
"warning",
273
"error"
274
],
275
"default": "ignore",
276
"markdownDescription": "%css.lint.float.desc%"
277
},
278
"css.lint.idSelector": {
279
"type": "string",
280
"scope": "resource",
281
"enum": [
282
"ignore",
283
"warning",
284
"error"
285
],
286
"default": "ignore",
287
"description": "%css.lint.idSelector.desc%"
288
},
289
"css.lint.unknownAtRules": {
290
"type": "string",
291
"scope": "resource",
292
"enum": [
293
"ignore",
294
"warning",
295
"error"
296
],
297
"default": "warning",
298
"description": "%css.lint.unknownAtRules.desc%"
299
},
300
"css.trace.server": {
301
"type": "string",
302
"scope": "window",
303
"enum": [
304
"off",
305
"messages",
306
"verbose"
307
],
308
"default": "off",
309
"description": "%css.trace.server.desc%"
310
},
311
"css.format.enable": {
312
"type": "boolean",
313
"scope": "window",
314
"default": true,
315
"description": "%css.format.enable.desc%"
316
},
317
"css.format.newlineBetweenSelectors": {
318
"type": "boolean",
319
"scope": "resource",
320
"default": true,
321
"markdownDescription": "%css.format.newlineBetweenSelectors.desc%"
322
},
323
"css.format.newlineBetweenRules": {
324
"type": "boolean",
325
"scope": "resource",
326
"default": true,
327
"markdownDescription": "%css.format.newlineBetweenRules.desc%"
328
},
329
"css.format.spaceAroundSelectorSeparator": {
330
"type": "boolean",
331
"scope": "resource",
332
"default": false,
333
"markdownDescription": "%css.format.spaceAroundSelectorSeparator.desc%"
334
},
335
"css.format.braceStyle": {
336
"type": "string",
337
"scope": "resource",
338
"default": "collapse",
339
"enum": [
340
"collapse",
341
"expand"
342
],
343
"markdownDescription": "%css.format.braceStyle.desc%"
344
},
345
"css.format.preserveNewLines": {
346
"type": "boolean",
347
"scope": "resource",
348
"default": true,
349
"markdownDescription": "%css.format.preserveNewLines.desc%"
350
},
351
"css.format.maxPreserveNewLines": {
352
"type": [
353
"number",
354
"null"
355
],
356
"scope": "resource",
357
"default": null,
358
"markdownDescription": "%css.format.maxPreserveNewLines.desc%"
359
}
360
}
361
},
362
{
363
"id": "scss",
364
"order": 24,
365
"title": "%scss.title%",
366
"properties": {
367
"scss.completion.triggerPropertyValueCompletion": {
368
"type": "boolean",
369
"scope": "resource",
370
"default": true,
371
"description": "%scss.completion.triggerPropertyValueCompletion.desc%"
372
},
373
"scss.completion.completePropertyWithSemicolon": {
374
"type": "boolean",
375
"scope": "resource",
376
"default": true,
377
"description": "%scss.completion.completePropertyWithSemicolon.desc%"
378
},
379
"scss.validate": {
380
"type": "boolean",
381
"scope": "resource",
382
"default": true,
383
"description": "%scss.validate.desc%"
384
},
385
"scss.hover.documentation": {
386
"type": "boolean",
387
"scope": "resource",
388
"default": true,
389
"description": "%scss.hover.documentation%"
390
},
391
"scss.hover.references": {
392
"type": "boolean",
393
"scope": "resource",
394
"default": true,
395
"description": "%scss.hover.references%"
396
},
397
"scss.lint.compatibleVendorPrefixes": {
398
"type": "string",
399
"scope": "resource",
400
"enum": [
401
"ignore",
402
"warning",
403
"error"
404
],
405
"default": "ignore",
406
"description": "%scss.lint.compatibleVendorPrefixes.desc%"
407
},
408
"scss.lint.vendorPrefix": {
409
"type": "string",
410
"scope": "resource",
411
"enum": [
412
"ignore",
413
"warning",
414
"error"
415
],
416
"default": "warning",
417
"description": "%scss.lint.vendorPrefix.desc%"
418
},
419
"scss.lint.duplicateProperties": {
420
"type": "string",
421
"scope": "resource",
422
"enum": [
423
"ignore",
424
"warning",
425
"error"
426
],
427
"default": "ignore",
428
"description": "%scss.lint.duplicateProperties.desc%"
429
},
430
"scss.lint.emptyRules": {
431
"type": "string",
432
"scope": "resource",
433
"enum": [
434
"ignore",
435
"warning",
436
"error"
437
],
438
"default": "warning",
439
"description": "%scss.lint.emptyRules.desc%"
440
},
441
"scss.lint.importStatement": {
442
"type": "string",
443
"scope": "resource",
444
"enum": [
445
"ignore",
446
"warning",
447
"error"
448
],
449
"default": "ignore",
450
"description": "%scss.lint.importStatement.desc%"
451
},
452
"scss.lint.boxModel": {
453
"type": "string",
454
"scope": "resource",
455
"enum": [
456
"ignore",
457
"warning",
458
"error"
459
],
460
"default": "ignore",
461
"markdownDescription": "%scss.lint.boxModel.desc%"
462
},
463
"scss.lint.universalSelector": {
464
"type": "string",
465
"scope": "resource",
466
"enum": [
467
"ignore",
468
"warning",
469
"error"
470
],
471
"default": "ignore",
472
"markdownDescription": "%scss.lint.universalSelector.desc%"
473
},
474
"scss.lint.zeroUnits": {
475
"type": "string",
476
"scope": "resource",
477
"enum": [
478
"ignore",
479
"warning",
480
"error"
481
],
482
"default": "ignore",
483
"description": "%scss.lint.zeroUnits.desc%"
484
},
485
"scss.lint.fontFaceProperties": {
486
"type": "string",
487
"scope": "resource",
488
"enum": [
489
"ignore",
490
"warning",
491
"error"
492
],
493
"default": "warning",
494
"markdownDescription": "%scss.lint.fontFaceProperties.desc%"
495
},
496
"scss.lint.hexColorLength": {
497
"type": "string",
498
"scope": "resource",
499
"enum": [
500
"ignore",
501
"warning",
502
"error"
503
],
504
"default": "error",
505
"description": "%scss.lint.hexColorLength.desc%"
506
},
507
"scss.lint.argumentsInColorFunction": {
508
"type": "string",
509
"scope": "resource",
510
"enum": [
511
"ignore",
512
"warning",
513
"error"
514
],
515
"default": "error",
516
"description": "%scss.lint.argumentsInColorFunction.desc%"
517
},
518
"scss.lint.unknownProperties": {
519
"type": "string",
520
"scope": "resource",
521
"enum": [
522
"ignore",
523
"warning",
524
"error"
525
],
526
"default": "warning",
527
"description": "%scss.lint.unknownProperties.desc%"
528
},
529
"scss.lint.validProperties": {
530
"type": "array",
531
"uniqueItems": true,
532
"items": {
533
"type": "string"
534
},
535
"scope": "resource",
536
"default": [],
537
"description": "%scss.lint.validProperties.desc%"
538
},
539
"scss.lint.ieHack": {
540
"type": "string",
541
"scope": "resource",
542
"enum": [
543
"ignore",
544
"warning",
545
"error"
546
],
547
"default": "ignore",
548
"description": "%scss.lint.ieHack.desc%"
549
},
550
"scss.lint.unknownVendorSpecificProperties": {
551
"type": "string",
552
"scope": "resource",
553
"enum": [
554
"ignore",
555
"warning",
556
"error"
557
],
558
"default": "ignore",
559
"description": "%scss.lint.unknownVendorSpecificProperties.desc%"
560
},
561
"scss.lint.propertyIgnoredDueToDisplay": {
562
"type": "string",
563
"scope": "resource",
564
"enum": [
565
"ignore",
566
"warning",
567
"error"
568
],
569
"default": "warning",
570
"markdownDescription": "%scss.lint.propertyIgnoredDueToDisplay.desc%"
571
},
572
"scss.lint.important": {
573
"type": "string",
574
"scope": "resource",
575
"enum": [
576
"ignore",
577
"warning",
578
"error"
579
],
580
"default": "ignore",
581
"markdownDescription": "%scss.lint.important.desc%"
582
},
583
"scss.lint.float": {
584
"type": "string",
585
"scope": "resource",
586
"enum": [
587
"ignore",
588
"warning",
589
"error"
590
],
591
"default": "ignore",
592
"markdownDescription": "%scss.lint.float.desc%"
593
},
594
"scss.lint.idSelector": {
595
"type": "string",
596
"scope": "resource",
597
"enum": [
598
"ignore",
599
"warning",
600
"error"
601
],
602
"default": "ignore",
603
"description": "%scss.lint.idSelector.desc%"
604
},
605
"scss.lint.unknownAtRules": {
606
"type": "string",
607
"scope": "resource",
608
"enum": [
609
"ignore",
610
"warning",
611
"error"
612
],
613
"default": "warning",
614
"description": "%scss.lint.unknownAtRules.desc%"
615
},
616
"scss.format.enable": {
617
"type": "boolean",
618
"scope": "window",
619
"default": true,
620
"description": "%scss.format.enable.desc%"
621
},
622
"scss.format.newlineBetweenSelectors": {
623
"type": "boolean",
624
"scope": "resource",
625
"default": true,
626
"markdownDescription": "%scss.format.newlineBetweenSelectors.desc%"
627
},
628
"scss.format.newlineBetweenRules": {
629
"type": "boolean",
630
"scope": "resource",
631
"default": true,
632
"markdownDescription": "%scss.format.newlineBetweenRules.desc%"
633
},
634
"scss.format.spaceAroundSelectorSeparator": {
635
"type": "boolean",
636
"scope": "resource",
637
"default": false,
638
"markdownDescription": "%scss.format.spaceAroundSelectorSeparator.desc%"
639
},
640
"scss.format.braceStyle": {
641
"type": "string",
642
"scope": "resource",
643
"default": "collapse",
644
"enum": [
645
"collapse",
646
"expand"
647
],
648
"markdownDescription": "%scss.format.braceStyle.desc%"
649
},
650
"scss.format.preserveNewLines": {
651
"type": "boolean",
652
"scope": "resource",
653
"default": true,
654
"markdownDescription": "%scss.format.preserveNewLines.desc%"
655
},
656
"scss.format.maxPreserveNewLines": {
657
"type": [
658
"number",
659
"null"
660
],
661
"scope": "resource",
662
"default": null,
663
"markdownDescription": "%scss.format.maxPreserveNewLines.desc%"
664
}
665
}
666
},
667
{
668
"id": "less",
669
"order": 23,
670
"type": "object",
671
"title": "%less.title%",
672
"properties": {
673
"less.completion.triggerPropertyValueCompletion": {
674
"type": "boolean",
675
"scope": "resource",
676
"default": true,
677
"description": "%less.completion.triggerPropertyValueCompletion.desc%"
678
},
679
"less.completion.completePropertyWithSemicolon": {
680
"type": "boolean",
681
"scope": "resource",
682
"default": true,
683
"description": "%less.completion.completePropertyWithSemicolon.desc%"
684
},
685
"less.validate": {
686
"type": "boolean",
687
"scope": "resource",
688
"default": true,
689
"description": "%less.validate.desc%"
690
},
691
"less.hover.documentation": {
692
"type": "boolean",
693
"scope": "resource",
694
"default": true,
695
"description": "%less.hover.documentation%"
696
},
697
"less.hover.references": {
698
"type": "boolean",
699
"scope": "resource",
700
"default": true,
701
"description": "%less.hover.references%"
702
},
703
"less.lint.compatibleVendorPrefixes": {
704
"type": "string",
705
"scope": "resource",
706
"enum": [
707
"ignore",
708
"warning",
709
"error"
710
],
711
"default": "ignore",
712
"description": "%less.lint.compatibleVendorPrefixes.desc%"
713
},
714
"less.lint.vendorPrefix": {
715
"type": "string",
716
"scope": "resource",
717
"enum": [
718
"ignore",
719
"warning",
720
"error"
721
],
722
"default": "warning",
723
"description": "%less.lint.vendorPrefix.desc%"
724
},
725
"less.lint.duplicateProperties": {
726
"type": "string",
727
"scope": "resource",
728
"enum": [
729
"ignore",
730
"warning",
731
"error"
732
],
733
"default": "ignore",
734
"description": "%less.lint.duplicateProperties.desc%"
735
},
736
"less.lint.emptyRules": {
737
"type": "string",
738
"scope": "resource",
739
"enum": [
740
"ignore",
741
"warning",
742
"error"
743
],
744
"default": "warning",
745
"description": "%less.lint.emptyRules.desc%"
746
},
747
"less.lint.importStatement": {
748
"type": "string",
749
"scope": "resource",
750
"enum": [
751
"ignore",
752
"warning",
753
"error"
754
],
755
"default": "ignore",
756
"description": "%less.lint.importStatement.desc%"
757
},
758
"less.lint.boxModel": {
759
"type": "string",
760
"scope": "resource",
761
"enum": [
762
"ignore",
763
"warning",
764
"error"
765
],
766
"default": "ignore",
767
"markdownDescription": "%less.lint.boxModel.desc%"
768
},
769
"less.lint.universalSelector": {
770
"type": "string",
771
"scope": "resource",
772
"enum": [
773
"ignore",
774
"warning",
775
"error"
776
],
777
"default": "ignore",
778
"markdownDescription": "%less.lint.universalSelector.desc%"
779
},
780
"less.lint.zeroUnits": {
781
"type": "string",
782
"scope": "resource",
783
"enum": [
784
"ignore",
785
"warning",
786
"error"
787
],
788
"default": "ignore",
789
"description": "%less.lint.zeroUnits.desc%"
790
},
791
"less.lint.fontFaceProperties": {
792
"type": "string",
793
"scope": "resource",
794
"enum": [
795
"ignore",
796
"warning",
797
"error"
798
],
799
"default": "warning",
800
"markdownDescription": "%less.lint.fontFaceProperties.desc%"
801
},
802
"less.lint.hexColorLength": {
803
"type": "string",
804
"scope": "resource",
805
"enum": [
806
"ignore",
807
"warning",
808
"error"
809
],
810
"default": "error",
811
"description": "%less.lint.hexColorLength.desc%"
812
},
813
"less.lint.argumentsInColorFunction": {
814
"type": "string",
815
"scope": "resource",
816
"enum": [
817
"ignore",
818
"warning",
819
"error"
820
],
821
"default": "error",
822
"description": "%less.lint.argumentsInColorFunction.desc%"
823
},
824
"less.lint.unknownProperties": {
825
"type": "string",
826
"scope": "resource",
827
"enum": [
828
"ignore",
829
"warning",
830
"error"
831
],
832
"default": "warning",
833
"description": "%less.lint.unknownProperties.desc%"
834
},
835
"less.lint.validProperties": {
836
"type": "array",
837
"uniqueItems": true,
838
"items": {
839
"type": "string"
840
},
841
"scope": "resource",
842
"default": [],
843
"description": "%less.lint.validProperties.desc%"
844
},
845
"less.lint.ieHack": {
846
"type": "string",
847
"scope": "resource",
848
"enum": [
849
"ignore",
850
"warning",
851
"error"
852
],
853
"default": "ignore",
854
"description": "%less.lint.ieHack.desc%"
855
},
856
"less.lint.unknownVendorSpecificProperties": {
857
"type": "string",
858
"scope": "resource",
859
"enum": [
860
"ignore",
861
"warning",
862
"error"
863
],
864
"default": "ignore",
865
"description": "%less.lint.unknownVendorSpecificProperties.desc%"
866
},
867
"less.lint.propertyIgnoredDueToDisplay": {
868
"type": "string",
869
"scope": "resource",
870
"enum": [
871
"ignore",
872
"warning",
873
"error"
874
],
875
"default": "warning",
876
"markdownDescription": "%less.lint.propertyIgnoredDueToDisplay.desc%"
877
},
878
"less.lint.important": {
879
"type": "string",
880
"scope": "resource",
881
"enum": [
882
"ignore",
883
"warning",
884
"error"
885
],
886
"default": "ignore",
887
"markdownDescription": "%less.lint.important.desc%"
888
},
889
"less.lint.float": {
890
"type": "string",
891
"scope": "resource",
892
"enum": [
893
"ignore",
894
"warning",
895
"error"
896
],
897
"default": "ignore",
898
"markdownDescription": "%less.lint.float.desc%"
899
},
900
"less.lint.idSelector": {
901
"type": "string",
902
"scope": "resource",
903
"enum": [
904
"ignore",
905
"warning",
906
"error"
907
],
908
"default": "ignore",
909
"description": "%less.lint.idSelector.desc%"
910
},
911
"less.lint.unknownAtRules": {
912
"type": "string",
913
"scope": "resource",
914
"enum": [
915
"ignore",
916
"warning",
917
"error"
918
],
919
"default": "warning",
920
"description": "%less.lint.unknownAtRules.desc%"
921
},
922
"less.format.enable": {
923
"type": "boolean",
924
"scope": "window",
925
"default": true,
926
"description": "%less.format.enable.desc%"
927
},
928
"less.format.newlineBetweenSelectors": {
929
"type": "boolean",
930
"scope": "resource",
931
"default": true,
932
"markdownDescription": "%less.format.newlineBetweenSelectors.desc%"
933
},
934
"less.format.newlineBetweenRules": {
935
"type": "boolean",
936
"scope": "resource",
937
"default": true,
938
"markdownDescription": "%less.format.newlineBetweenRules.desc%"
939
},
940
"less.format.spaceAroundSelectorSeparator": {
941
"type": "boolean",
942
"scope": "resource",
943
"default": false,
944
"markdownDescription": "%less.format.spaceAroundSelectorSeparator.desc%"
945
},
946
"less.format.braceStyle": {
947
"type": "string",
948
"scope": "resource",
949
"default": "collapse",
950
"enum": [
951
"collapse",
952
"expand"
953
],
954
"markdownDescription": "%less.format.braceStyle.desc%"
955
},
956
"less.format.preserveNewLines": {
957
"type": "boolean",
958
"scope": "resource",
959
"default": true,
960
"markdownDescription": "%less.format.preserveNewLines.desc%"
961
},
962
"less.format.maxPreserveNewLines": {
963
"type": [
964
"number",
965
"null"
966
],
967
"scope": "resource",
968
"default": null,
969
"markdownDescription": "%less.format.maxPreserveNewLines.desc%"
970
}
971
}
972
}
973
],
974
"configurationDefaults": {
975
"[css]": {
976
"editor.suggest.insertMode": "replace"
977
},
978
"[scss]": {
979
"editor.suggest.insertMode": "replace"
980
},
981
"[less]": {
982
"editor.suggest.insertMode": "replace"
983
}
984
},
985
"jsonValidation": [
986
{
987
"fileMatch": "*.css-data.json",
988
"url": "https://raw.githubusercontent.com/microsoft/vscode-css-languageservice/master/docs/customData.schema.json"
989
},
990
{
991
"fileMatch": "package.json",
992
"url": "./schemas/package.schema.json"
993
}
994
]
995
},
996
"dependencies": {
997
"vscode-languageclient": "^10.0.0-next.16",
998
"vscode-uri": "^3.1.0"
999
},
1000
"devDependencies": {
1001
"@types/node": "22.x"
1002
},
1003
"repository": {
1004
"type": "git",
1005
"url": "https://github.com/microsoft/vscode.git"
1006
}
1007
}
1008
1009