Skip to content

Commit c582848

Browse files
committed
Add settings to ignore unassigned property warnings
See eclipse-lsp4mp/lsp4mp#145 Signed-off-by: David Thompson <[email protected]>
1 parent 3e83a2f commit c582848

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-microprofile",
33
"displayName": "Tools for MicroProfile",
44
"description": "Language Support for Eclipse MicroProfile",
5-
"version": "0.3.1",
5+
"version": "0.4.0",
66
"icon": "icons/logo.png",
77
"author": "Red Hat",
88
"publisher": "redhat",
@@ -192,6 +192,16 @@
192192
"description": "Array of properties to ignore for unknown MicroProfile properties validation. Patterns can be used ('*' = any string, '?' = any character)",
193193
"scope": "window"
194194
},
195+
"microprofile.tools.validation.unassigned.excluded": {
196+
"type": "array",
197+
"default": [
198+
],
199+
"items": {
200+
"type": "string"
201+
},
202+
"description": "Array of properties to ignore for unassigned MicroProfile properties validation. Patterns can be used ('*' = any string, '?' = any character)",
203+
"scope": "window"
204+
},
195205
"microprofile.tools.codeLens.urlCodeLensEnabled": {
196206
"type": "boolean",
197207
"default": true,

0 commit comments

Comments
 (0)