Skip to content

Commit

Permalink
Remove quotes from booleans (microsoft#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnMcPMS committed Oct 21, 2020
1 parent 7ee6784 commit 5d3193d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/settings.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
Expand Down

0 comments on commit 5d3193d

Please sign in to comment.