From 74fa5207ab789eee318a8e872e862e6352ade610 Mon Sep 17 00:00:00 2001 From: N-CSE <114905994+N-CSE@users.noreply.github.com> Date: Wed, 1 Apr 2026 02:39:24 +0800 Subject: [PATCH] fix: update editor.hover.enabled to use string value The `editor.hover.enabled` setting was using a boolean value. It has been changed from `false` to `"off"` to match the expected type and valid options (`"on"`, `"off"`, `"onKeyboardModifier"`). --- devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devcontainer.json b/devcontainer.json index 88b92507..83fb22f1 100644 --- a/devcontainer.json +++ b/devcontainer.json @@ -70,7 +70,7 @@ "editor.foldingHighlight": false, "editor.formatOnSave": false, "editor.guides.indentation": false, - "editor.hover.enabled": false, + "editor.hover.enabled": "off", "editor.lightbulb.enabled": "off", "editor.matchBrackets": "never", "editor.mouseWheelZoom": true,