Skip to content

Commit

Permalink
Remove quotes on boolean settings
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mnoah1 authored Jan 8, 2025
1 parent e97c816 commit 28173cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 28173cb

Please sign in to comment.