winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5d3193dfd664f8966a0193b7dddc520d0eae57d8
parent 7ee678403a6cd082f73cae47be9a98bfda3c5973
Author: JohnMcPMS <johnmcp@microsoft.com>
Date:   Wed, 21 Oct 2020 15:24:03 -0700

Remove quotes from booleans (#621)


Diffstat:
Mdoc/settings.schema.json | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/settings.schema.json b/doc/settings.schema.json @@ -36,27 +36,27 @@ "experimentalCMD": { "description": "Reference implementation for an experimental command", "type": "boolean", - "default": "false" + "default": false }, "experimentalARG": { "description": "Reference implementation for an experimental argument", "type": "boolean", - "default": "false" + "default": false }, "experimentalMSStore": { "description": "Experimental support for Microsoft Store source", "type": "boolean", - "default": "false" + "default": false }, "list": { "description": "Enable the list command while it is in development", "type": "boolean", - "default": "false" + "default": false }, "upgrade": { "description": "Enable the upgrade command while it is in development", "type": "boolean", - "default": "false" + "default": false } } }