[json] add trustedDomains settings (#287639)

* use trusted schemas

* [json] add trustedDomains settings
This commit is contained in:
Martin Aeschlimann
2026-01-14 00:31:19 +01:00
committed by GitHub
parent 4641b2abb8
commit 067cb03d18
8 changed files with 469 additions and 112 deletions

View File

@@ -126,6 +126,22 @@
"tags": [
"usesOnlineServices"
]
},
"json.schemaDownload.trustedDomains": {
"type": "object",
"default": {
"https://schemastore.azurewebsites.net/": true,
"https://raw.githubusercontent.com/": true,
"https://www.schemastore.org/": true,
"https://json-schema.org/": true
},
"additionalProperties": {
"type": "boolean"
},
"description": "%json.schemaDownload.trustedDomains.desc%",
"tags": [
"usesOnlineServices"
]
}
}
},