From 68bb25d6731963eb224202496fed28fa95bc3edd Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Mon, 19 Mar 2018 10:18:07 -0700 Subject: [PATCH] Add boot-java.hints.on config key back The information about this config key was lost from vscode-boot-java in the merge to vscode spring-boot. Adding it back. --- vscode-extensions/vscode-spring-boot/package.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/vscode-extensions/vscode-spring-boot/package.json b/vscode-extensions/vscode-spring-boot/package.json index b0e854953..e5e0357b5 100644 --- a/vscode-extensions/vscode-spring-boot/package.json +++ b/vscode-extensions/vscode-spring-boot/package.json @@ -55,6 +55,17 @@ "configuration": "./properties-support/language-configuration.json" } ], + "configuration": { + "type": "object", + "title": "Boot-Java Configuration", + "properties": { + "boot-java.boot-hints.on": { + "type": "boolean", + "default": true, + "description": "Enable/Disable Spring running Boot application live hints decorators in the source code" + } + } + }, "grammars": [ { "language": "spring-boot-properties-yaml",