You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integration/vscode/ada/package.json
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -426,7 +426,7 @@
426
426
"scope": "window",
427
427
"type": "boolean",
428
428
"default": null,
429
-
"description": "Controls whether or not the Ada Language Server should emit project diagnostics into the VS Code Problems view."
429
+
"description": "Controls whether or not the Ada Language Server should emit diagnostics related to project loading into the VS Code Problems view."
430
430
},
431
431
"ada.alireDiagnostics": {
432
432
"scope": "window",
@@ -438,7 +438,13 @@
438
438
"scope": "window",
439
439
"type": "boolean",
440
440
"default": null,
441
-
"description": "Controls whether or not the Ada Language Server should emit diagnostics related to Ada files into the VS Code Problems view."
441
+
"description": "Controls whether or not the Ada Language Server should emit diagnostics related to the edition of Ada files into the VS Code Problems view."
442
+
},
443
+
"ada.gprFileDiagnostics": {
444
+
"scope": "window",
445
+
"type": "boolean",
446
+
"default": null,
447
+
"description": "Controls whether or not the Ada Language Server should emit diagnostics related to the edition of GPR files into the VS Code Problems view."
Copy file name to clipboardExpand all lines: integration/vscode/ada/schemas/als-settings-schema.json
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,12 @@
88
88
"adaFileDiagnostics": {
89
89
"type": "boolean",
90
90
"default": true,
91
-
"description": "Controls whether or not the Ada Language Server should emit diagnostics related to Ada Files into the VS Code Problems view."
91
+
"description": "Controls whether or not the Ada Language Server should emit diagnostics related to the edition of Ada Files into the VS Code Problems view."
92
+
},
93
+
"gprFileDiagnostics": {
94
+
"type": "boolean",
95
+
"default": true,
96
+
"description": "Controls whether or not the Ada Language Server should emit diagnostics related to the edition of GPR Files into the VS Code Problems view."
0 commit comments