From caded118ba971ee610c60252e79b476974edbdf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Ch=C5=82odnicki?= Date: Fri, 8 May 2026 08:23:18 +0200 Subject: [PATCH] Fix default value of two extension settings The type of those properties is boolean so the default should be literal boolean and not a string. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0ad29ccd..6ec54ee0 100644 --- a/package.json +++ b/package.json @@ -267,12 +267,12 @@ }, "yaml.extension.recommendations": { "type": "boolean", - "default": "true", + "default": true, "description": "Suggest additional extensions based on YAML usage." }, "yaml.hoverSchemaSource": { "type": "boolean", - "default": "true", + "default": true, "description": "Enable/disable showing the schema source in hover tooltips" } }