-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
1427 lines (1427 loc) · 67.4 KB
/
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
{
"name": "ada",
"displayName": "Ada & SPARK",
"description": "Ada & SPARK IntelliSense, code browsing, debugging and more.",
"version": "24.0.999",
"publisher": "AdaCore",
"license": "GPL-3.0",
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Programming Languages",
"Extension Packs"
],
"extensionPack": [
"ms-vscode.cpptools",
"ms-sarifvscode.sarif-viewer"
],
"activationEvents": [
"workspaceContains:*.gpr",
"workspaceContains:*/*.gpr",
"workspaceContains:*.ad[bs]",
"workspaceContains:*/*.ad[bs]",
"workspaceContains:alire.toml",
"onDebugDynamicConfigurations:ada"
],
"main": "./out/src/extension",
"icon": "icons/ada.png",
"bugs": "https://github.com/AdaCore/ada_language_server/issues",
"repository": {
"type": "git",
"url": "https://github.com/AdaCore/ada_language_server.git"
},
"os": [
"linux",
"win32",
"darwin"
],
"cpu": [
"arm64",
"x64"
],
"keywords": [
"Ada",
"ada",
"adb",
"adc",
"ads",
"gpr"
],
"contributes": {
"languages": [
{
"id": "ada",
"aliases": [
"Ada",
"ada"
],
"extensions": [
".ada",
".adb",
".adc",
".ads"
],
"configuration": "./language-configuration.json"
},
{
"id": "ali",
"aliases": [
"ALI",
"Ali",
"ali",
"Ada Library Information"
],
"extensions": [
".ali"
]
},
{
"id": "gpr",
"aliases": [
"GNAT Project",
"gpr"
],
"extensions": [
".gpr"
],
"configuration": "./gpr-language-configuration.json"
}
],
"grammars": [
{
"language": "ada",
"scopeName": "source.ada",
"path": "./syntaxes/ada.tmLanguage.json"
},
{
"language": "ali",
"scopeName": "source.ali",
"path": "./syntaxes/ali.tmLanguage.json"
},
{
"language": "gpr",
"scopeName": "source.gpr",
"path": "./syntaxes/gpr.tmLanguage.json"
}
],
"semanticTokenScopes": [
{
"language": "ada",
"scopes": {
"namespace": [
"entity.name.label.ada"
],
"type": [
"entity.name.type.ada"
],
"class": [
"entity.name.type.class.ada"
],
"enum": [
"entity.name.type.enum.ada"
],
"interface": [
"entity.name.type.interface.ada"
],
"struct": [
"entity.name.type.struct.ada"
],
"typeParameter": [
"variable.other.constant.parameter.ada"
],
"parameter": [
"entity.name.variable.parameter.ada"
],
"variable": [
"entity.name.variable.ada"
],
"property": [
"entity.name.variable.property.ada"
],
"enumMember": [
"variable.other.enummember.ada"
],
"function": [
"entity.name.function.ada"
],
"keyword": [
"keyword.other.ada"
],
"modifier": [
"storage.modifier.ada"
],
"comment": [
"comment.line.ada"
],
"string": [
"string.quoted.double.ada"
],
"number": [
"constant.numeric.ada"
],
"operator": [
"entity.name.operator.ada"
],
"parameter.readonly": [
"variable.other.constant.parameter.ada"
],
"variable.readonly": [
"variable.other.constant.ada"
],
"property.readonly": [
"variable.other.constant.property.ada"
],
"namespace.deprecated": [
"markup.strikethrough.namespace.ada"
],
"type.deprecated": [
"markup.strikethrough.type.ada"
],
"class.deprecated": [
"markup.strikethrough.class.ada"
],
"enum.deprecated": [
"markup.strikethrough.enum.ada"
],
"interface.deprecated": [
"markup.strikethrough.interface.ada"
],
"struct.deprecated": [
"markup.strikethrough.struct.ada"
],
"variable.deprecated": [
"markup.strikethrough.variable.ada"
],
"property.deprecated": [
"markup.strikethrough.property.ada"
],
"function.deprecated": [
"markup.strikethrough.function.ada"
],
"type.abstract": [
"entity.name.type.abstract.ada"
],
"class.abstract": [
"entity.name.type.class.abstract.ada"
],
"function.abstract": [
"entity.name.function.abstract.ada"
],
"operator.abstract": [
"entity.name.operator.abstract.ada"
],
"parameter.modification": [
"variable.write.parameter.ada"
],
"variable.modification": [
"variable.write.ada"
],
"property.modification": [
"variable.write.property.ada"
],
"namespace.defaultLibrary": [
"support.namespace.ada"
],
"type.defaultLibrary": [
"support.type.ada"
],
"class.defaultLibrary": [
"support.class.ada"
],
"enum.defaultLibrary": [
"support.type.enum.ada"
],
"interface.defaultLibrary": [
"support.type.interface.ada"
],
"struct.defaultLibrary": [
"support.type.struct.ada"
],
"typeParameter.defaultLibrary": [
"support.variable.discriminant.ada"
],
"parameter.defaultLibrary": [
"support.variable.parameter.ada"
],
"variable.defaultLibrary": [
"support.variable.ada"
],
"property.defaultLibrary": [
"support.variable.property.ada"
],
"enumMember.defaultLibrary": [
"support.constant.enummember.ada"
],
"function.defaultLibrary": [
"support.function.ada"
],
"operator.defaultLibrary": [
"support.function.operator.ada"
]
}
}
],
"snippets": [
{
"language": "ada",
"path": "./ada-snippets.json"
},
{
"language": "gpr",
"path": "./gpr-snippets.json"
}
],
"configuration": [
{
"type": "object",
"title": "Project",
"order": 0,
"properties": {
"ada.projectFile": {
"scope": "window",
"type": "string",
"default": null,
"markdownDescription": "GPR project file (*.gpr) for this workspace.\n\nIt is recommended to set this to a relative path starting at the root of the workspace.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists.",
"order": 0
},
"ada.gprConfigurationFile": {
"scope": "window",
"type": "string",
"default": null,
"markdownDescription": "GPR configuration file (*.cgpr) for this workspace.\n\nIt is recommended to set this to a relative path starting at the root of the workspace.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists.",
"order": 0
},
"ada.scenarioVariables": {
"scope": "window",
"type": "object",
"default": null,
"markdownDescription": "Scenario variables to apply to the GPR project file.\n\nThis value should be provided as an object where the property names are GPR scenario variables and the values are strings.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists.",
"patternProperties": {
".*": {
"type": "string"
}
},
"order": 1
},
"ada.defaultCharset": {
"scope": "window",
"type": "string",
"default": null,
"markdownDescription": "The character set that the Ada Language Server should use when reading files from disk.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists."
},
"ada.relocateBuildTree": {
"scope": "window",
"type": "string",
"default": null,
"markdownDescription": "The path to a directory used for out-of-tree builds. This feature is related to the [--relocate-build-tree GPRbuild command line switch](https://docs.adacore.com/gprbuild-docs/html/gprbuild_ug/building_with_gprbuild.html#switches).\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists."
},
"ada.rootDir": {
"scope": "window",
"type": "string",
"default": null,
"markdownDescription": "This setting must be used in conjunction with the `relocateBuildTree` setting.\n\nIt specifies the root directory for artifact relocation. It corresponds to the [--root-dir GPRbuild command line switch](https://docs.adacore.com/gprbuild-docs/html/gprbuild_ug/building_with_gprbuild.html#switches).\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists."
}
}
},
{
"type": "object",
"title": "Formatting",
"order": 1,
"properties": {
"ada.useGnatformat": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Enable GNATformat as the formatting provider for Ada source files.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.onTypeFormatting.indentOnly": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "If the VS Code `editor.formatOnType` setting is enabled, the Ada Language Server will format Ada code while it is being typed in the editor, in particular when a new line is typed.\n\nThis setting controls whether formatting should only perform the indentation of the new line (true) or also format the previous line (false).\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
}
}
},
{
"type": "object",
"title": "UI",
"order": 2,
"properties": {
"ada.showNotificationsOnErrors": {
"markdownDescription": "Whether to show error notifications in VS Code for failing LSP requests.",
"default": false,
"type": "boolean"
},
"ada.documentationStyle": {
"scope": "window",
"enum": [
"gnat",
"leading",
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: \"gnat\")"
],
"markdownEnumDescriptions": [
"Default style, based on GNAT coding standard with some enhancements.",
"Documentation for the entities extracted from the comments before the entity declaration.",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `\"gnat\"`."
],
"default": null,
"markdownDescription": "Controls the primary documentation style of entities.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `\"gnat\"`."
},
"ada.displayMethodAncestryOnNavigation": {
"scope": "window",
"enum": [
"never",
"usage_and_abstract_only",
"definition_only",
"always",
null
],
"enumItemLabels": [
null,
null,
null,
null,
"Provided by .als.json (default: \"usage_and_abstract_only\")"
],
"markdownEnumDescriptions": [
"Never list overriding and/or overridden subprograms.",
"List overriding and/or overridden subprograms on dispatching calls and on abstract subprogram declarations.",
"List overriding and/or overridden subprograms on declarations only.",
"Always list overriding and/or overridden subprograms when possible.",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `\"usage_and_abstract_only\"`."
],
"default": null,
"markdownDescription": "Controls the policy for displaying overriding and overridden subprograms on navigation requests such as 'Go To Definition' or 'Go To Implementations'.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `\"usage_and_abstract_only\"`."
},
"ada.foldComments": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Controls whether comments should be folded like code blocks.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.namedNotationThreshold": {
"scope": "window",
"type": "integer",
"default": 3,
"markdownDescription": "Defines the number of parameters/components beyond which named notation is used for completion snippets.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `3`."
},
"ada.useCompletionSnippets": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Enable snippets in completion results (e.g. subprogram calls).\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.insertWithClauses": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Enable insertion of missing with-clauses when accepting completion for invisible symbols.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.renameInComments": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: false)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `false`."
],
"default": null,
"markdownDescription": "Enable editing Ada comments to update references to an entity when it is being renamed.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `false`."
}
}
},
{
"type": "object",
"title": "Diagnostics",
"properties": {
"ada.projectDiagnostics": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Controls whether or not the Ada Language Server should emit diagnostics related to project loading into the VS Code Problems view.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.alireDiagnostics": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Controls whether or not the Ada Language Server should emit diagnostics related to alire into the VS Code Problems view.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.sourceInfoDiagnostics": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Controls whether or not the Ada Language Server should emit source information diagnostics (e.g: for opened files that do not belong to the loaded project tree).\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.adaFileDiagnostics": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Controls whether or not the Ada Language Server should emit diagnostics related to the edition of Ada files into the VS Code Problems view.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.gprFileDiagnostics": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Controls whether or not the Ada Language Server should emit diagnostics related to the edition of GPR files into the VS Code Problems view.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
}
}
},
{
"type": "object",
"title": "Miscellaneous",
"properties": {
"ada.enableIndexing": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Controls whether the Ada Language Server should index the source files immediately after loading a project.\n\nIf set to false, indexing will be deferred to the time when an action requiring the index is first performed, e.g. hovering over a referenced entity to get its documentation.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.followSymlinks": {
"scope": "window",
"enum": [
true,
false,
null
],
"enumItemLabels": [
null,
null,
"Provided by .als.json (default: true)"
],
"markdownEnumDescriptions": [
"true",
"false",
"Provided by [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) if it exists at the workspace root, otherwise defaults to `true`."
],
"default": null,
"markdownDescription": "Controls the Ada Language Server normalizes the file paths received from the client.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `true`."
},
"ada.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces are emitted.",
"Brief traces are emitted for each request sent and each response received.",
"Verbose traces are emitted for each request sent and each response received, including the message content."
],
"default": "off",
"markdownDescription": "Traces the communication between VS Code and the Ada language server in the 'Ada Language Server' Output view."
},
"gpr.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces are emitted.",
"Brief traces are emitted for each request sent and each response received.",
"Verbose traces are emitted for each request sent and each response received, including the message content."
],
"default": "off",
"markdownDescription": "Traces the communication between VS Code and the GPR language server in the 'GPR Language Server' Output view."
},
"ada.logThreshold": {
"scope": "window",
"type": "integer",
"default": 10,
"markdownDescription": "Controls the maximum number of trace files preserved in the ALS log directory (which defaults to `~/.als`). When this threshold is reached, old trace files get deleted automatically. The default number of preserved trace files is `10`.\n\nIf not set in VS Code, this setting takes its value from the [`.als.json`](https://github.com/AdaCore/ada_language_server/blob/master/doc/settings.md) file at the root of the workspace, if that file exists. Otherwise it defaults to `10`."
}
}
}
],
"jsonValidation": [
{
"fileMatch": ".als.json",
"url": "./schemas/als-settings-schema.json"
}
],
"problemMatchers": [
{
"name": "ada",
"label": "Gnat Ada Problem Matcher (obsolete)",
"fileLocation": [
"autoDetect",
"${workspaceRoot}"
],
"pattern": [
{
"regexp": "^([^:]:?[^:]*):(\\d+):(\\d+):\\s+(?:([a-z]+):\\s+)?(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
]
},
{
"name": "ada-error",
"label": "Gnat Ada Error Problem Matcher",
"fileLocation": [
"autoDetect",
"${workspaceRoot}"
],
"source": "ada",
"severity": "error",
"pattern": [
{
"regexp": "^([^:]:?[^:]*):(\\d+):(\\d+):\\s+[\\(:]?(error)[\\):]?\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 5
}
]
},
{
"name": "ada-warning",
"label": "Gnat Ada Warning Problem Matcher",
"fileLocation": [
"autoDetect",
"${workspaceRoot}"
],
"source": "ada",
"severity": "warning",
"pattern": [
{
"regexp": "^([^:]:?[^:]*):(\\d+):(\\d+):\\s+[\\(:]?(warning|medium|medium warning|low|low warning|style)[\\):]?\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 5
}
]
},
{
"name": "ada-info",
"label": "Gnat Ada Info Problem Matcher",
"fileLocation": [
"autoDetect",
"${workspaceRoot}"
],
"source": "ada",
"severity": "info",
"pattern": [
{
"regexp": "^([^:]:?[^:]*):(\\d+):(\\d+):\\s+[\\(:]?(info|[Nn]ote|check)[\\):]?\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 5
}
]
}
],
"taskDefinitions": [
{
"type": "ada",
"when": "shellExecutionSupported",
"properties": {
"command": {
"description": "The name of the command to call.",
"type": "string"
},
"args": {
"description": "The arguments to pass to the command.",
"type": "array",
"items": {
"type": "string"
}
},
"compound": {
"description": "List of task names to be executed sequentially.",
"type": "array",
"items": {
"type": "string"
}
},
"configuration": {
"deprecationMessage": "The task property 'configuration' is deprecated. Instead, use the properties 'command' and 'args' to configure the task.",
"type": "object",
"required": [
"kind"
],
"properties": {
"kind": {
"type": "string",
"description": "Kind of Ada task",
"enum": [
"buildProject",
"checkFile",
"cleanProject",
"buildMain",
"runMain",
"buildAndRunMain"
],
"enumDescriptions": [
"Build a GPR project",
"Run semantic checks on an Ada file",
"Clean a GPR project",
"Build a main program specified in a GPR project",
"Run a main program specified in a GPR project",
"Run a build task and a run task in sequence for a given main program"
]
},
"projectFile": {
"type": "string",
"description": "Path to GPR project file",
"default": "${config:ada.projectFile}"
},
"args": {
"type": "array",
"items": {
"type": "string"
},
"description": "Extra build command line arguments"
}
},
"oneOf": [
{
"$comment": "Each oneOf is evaluated regardless of the parent schema. That's why valid properties of the parent must be repeated here in order to be allowed.",
"properties": {
"kind": {
"enum": [
"buildProject",
"checkFile",
"cleanProject"
]
},
"projectFile": true,
"args": true
},
"additionalProperties": false
},
{
"required": [
"main"
],
"$comment": "Each oneOf is evaluated regardless of the parent schema. That's why valid properties of the parent must be repeated here in order to be allowed.",
"properties": {
"kind": {
"enum": [
"buildMain"
]
},
"projectFile": true,
"args": true,
"main": {
"type": "string",
"description": "Path to main source file"
}
},
"additionalProperties": false
},
{
"required": [
"main"
],
"$comment": "Each oneOf is evaluated regardless of the parent schema. That's why valid properties of the parent must be repeated here in order to be allowed.",
"properties": {
"kind": {
"enum": [
"runMain"
]
},
"projectFile": true,
"main": {
"type": "string",
"description": "Path to main source file"
},
"mainArgs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Arguments passed to the main executable invocation"
}
},
"additionalProperties": false
},
{
"required": [
"buildTask",
"runTask"
],
"$comment": "Each oneOf is evaluated regardless of the parent schema. That's why valid properties of the parent must be repeated here in order to be allowed.",
"properties": {
"kind": {
"enum": [
"buildAndRunMain"
]
},
"buildTask": {
"type": "string",
"description": "Name of the task that builds the main executable"
},
"runTask": {
"type": "string",
"description": "Name of the task that runs the main executable"
}
},
"additionalProperties": false
}
]
}
}
},
{
"type": "spark",
"when": "shellExecutionSupported",
"properties": {
"command": {
"description": "The name of the command to call.",
"type": "string"
},
"args": {
"description": "The arguments to pass to the command.",
"type": "array",
"items": {
"type": "string"
}
},
"compound": {
"description": "List of task names to be executed sequentially.",
"type": "array",
"items": {
"type": "string"
}
},
"configuration": {
"type": "object",
"required": [
"kind",
"projectFile"
],
"properties": {
"kind": {
"description": "Kind of SPARK task",
"enum": [
"cleanProjectForProof",
"examineProject",
"examineFile",
"examineSubprogram",
"proveProject",
"proveFile",
"proveSubprogram",
"proveRegion",
"proveLine"
]
},
"projectFile": {
"type": "string",
"description": "Path to GPR project file",
"default": "${config:ada.projectFile}"
},
"args": {
"type": "array",
"items": {
"type": "string"
},
"description": "Extra command line arguments"
}
},
"additionalProperties": false