From 28173cb45bc0a030a40e8439ddc1ca79cff266d2 Mon Sep 17 00:00:00 2001 From: Michael Noah <92764374+mnoah1@users.noreply.github.com> Date: Wed, 8 Jan 2025 15:41:45 -0500 Subject: [PATCH] Remove quotes on boolean settings Quotes around default settings values are causing these to evaluate to true. Remove quotes to ensure that the expected default value is used unless set otherwise. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c79b204..ea685b6 100644 --- a/package.json +++ b/package.json @@ -77,12 +77,12 @@ }, "bazelbsp.autoExpandTarget": { "type": "boolean", - "default": "true", + "default": true, "description": "Find all tests within open files, without waiting for the file's target to be expanded in the Test Explorer." }, "bazelbsp.debug.enabled": { "type": "boolean", - "default": "false", + "default": false, "markdownDescription": "Enable debugging integration in the Test Explorer. This adds an additional Debug run profile for each test item.\nSet the bazelFlags, profileName, and readyPattern settings in this section to match your repo's required behavior." }, "bazelbsp.debug.bazelFlags": {