From 5d3193dfd664f8966a0193b7dddc520d0eae57d8 Mon Sep 17 00:00:00 2001 From: JohnMcPMS Date: Wed, 21 Oct 2020 15:24:03 -0700 Subject: [PATCH] Remove quotes from booleans (#621) --- doc/settings.schema.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/settings.schema.json b/doc/settings.schema.json index 9b9c2ea008094..de30f6685ae9a 100644 --- 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 } } }