Skip to content

Commit fef1d75

Browse files
dependabot[bot]angelozerr
authored andcommitted
Fix inlay hint settings description
Signed-off-by: azerr <azerr@redhat.com>
1 parent 6f5fbcb commit fef1d75

2 files changed

Lines changed: 12 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,14 @@ Default is `error`.
6161
* `microprofile.tools.validation.unknown.severity` : Validation severity for unknown properties for MicroProfile `*.properties` files. Default is `warning`.
6262
* `microprofile.tools.validation.unknown.excluded` : Array of properties to ignore for unknown properties validation. Patterns can be used ('\*' = any string, '?' = any character).
6363
Default is `["*/mp-rest/providers/*/priority", "mp.openapi.schema.*", "kafka-streams.*", "camel.*"]`.
64-
* `microprofile.tools.codeLens.urlCodeLensEnabled` : Enable/disable the URL code lenses for REST services. Default is`true`.
64+
* `microprofile.tools.codeLens.urlCodeLensEnabled` : Enable or disable the URL code lenses for REST services. Default is`true`.
6565
* `microprofile.tools.validation.value.severity`: Validation severity for property values for MicroProfile `*.properties` files. Default is `error`.
6666
* `microprofile.tools.validation.unassigned.excluded`: Array of properties to ignore for unassigned properties validation in Java files. Patterns can be used ('\*' = any string, '?' = any character).
67-
* `microprofile.tools.inlayHint.enabled`: Enable/disable the inlay hint support. Default is `false`.
67+
* `microprofile.tools.inlayHint.enabled`: Enable or disable all MicroProfile Config inlay hints. Default is `true`.
68+
* `microprofile.tools.inlayHint.converters.enabled`: Show inlay hints indicating the MicroProfile Config converter used to convert configuration values from strings. Default is `false`.
69+
* `microprofile.tools.inlayHint.defaultValues.enabled`: Show inlay hints displaying the default value of configuration properties.. Default is `true`.
70+
* `microprofile.tools.inlayHint.types.enabled`: Show inlay hints displaying the Java type of configuration properties. Default is `false`.
71+
* `microprofile.tools.inlayHint.resolveExpressions.enabled`: Show inlay hints displaying the resolved expressions of configuration properties. Default is `true`.
6872

6973
### **Note for MicroProfile Rest Client properties**:
7074

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -232,37 +232,37 @@
232232
"microprofile.tools.codeLens.urlCodeLensEnabled": {
233233
"type": "boolean",
234234
"default": true,
235-
"description": "Enable/disable the URL code lenses for REST services.",
235+
"description": "Enable or disable the URL code lenses for REST services.",
236236
"scope": "window"
237237
},
238238
"microprofile.tools.inlayHint.enabled": {
239239
"type": "boolean",
240240
"default": true,
241-
"description": "Enable/disable the inlay hint support.",
241+
"description": "Enable or disable all MicroProfile Config inlay hints.",
242242
"scope": "window"
243243
},
244244
"microprofile.tools.inlayHint.converters.enabled": {
245245
"type": "boolean",
246246
"default": false,
247-
"description": "Enable/disable the inlay hint support.",
247+
"description": "Show inlay hints indicating the MicroProfile Config converter used to convert configuration values from strings.",
248248
"scope": "window"
249249
},
250250
"microprofile.tools.inlayHint.defaultValues.enabled": {
251251
"type": "boolean",
252252
"default": true,
253-
"description": "Enable/disable the inlay hint support.",
253+
"description": "Show inlay hints displaying the default value of configuration properties.",
254254
"scope": "window"
255255
},
256256
"microprofile.tools.inlayHint.types.enabled": {
257257
"type": "boolean",
258258
"default": false,
259-
"description": "Enable/disable the inlay hint support.",
259+
"description": "Show inlay hints displaying the Java type of configuration properties.",
260260
"scope": "window"
261261
},
262262
"microprofile.tools.inlayHint.resolveExpressions.enabled": {
263263
"type": "boolean",
264264
"default": true,
265-
"description": "Enable/disable the inlay hint support.",
265+
"description": "Show inlay hints displaying the resolved expressions of configuration properties.",
266266
"scope": "window"
267267
}
268268
}

0 commit comments

Comments
 (0)