This commit is contained in:
João Moreno
2020-11-09 14:23:24 +01:00
parent 147f623629
commit dd97a9d335
3 changed files with 60 additions and 29 deletions

View File

@@ -1662,10 +1662,27 @@
"scope": "resource"
},
"git.checkoutType": {
"type": "string",
"type": "array",
"items": {
"type": "string",
"enum": [
"local",
"tags",
"remote"
],
"enumDescriptions": [
"%config.checkoutType.local%",
"%config.checkoutType.tags%",
"%config.checkoutType.remote%"
]
},
"uniqueItems": true,
"markdownDescription": "%config.checkoutType%",
"default": "local,remote,tags"
"default": [
"local",
"remote",
"tags"
]
},
"git.ignoreLegacyWarning": {
"type": "boolean",