Skip to content

Commit

Permalink
Enable intellisense for all user settings fields (microsoft#5031)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdanish-kh authored Dec 12, 2024
1 parent 3157a93 commit 9d0bc47
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions schemas/JSON/settings/settings.schema.0.2.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"accent",
"rainbow",
"retro",
"sixel",
"sixel",
"disabled"
]
},
Expand Down Expand Up @@ -204,8 +204,8 @@
"properties": {
"defaultModuleRoot": {
"description": "The default root directory where PowerShell modules are installed to when applying a configuration.",
"type": "string",
"maxLength": 32767
"type": "string",
"maxLength": 32767
}
}
},
Expand Down Expand Up @@ -301,13 +301,19 @@
},
"fonts": {
"description": "Enable support for managing fonts",
"type": "boolean",
"type": "boolean",
"default": false
}
}
}
},
"allOf": [
{
"properties": {
"source": { "$ref": "#/definitions/Source" }
},
"additionalItems": true
},
{
"properties": {
"visual": { "$ref": "#/definitions/Visual" }
Expand All @@ -322,7 +328,7 @@
},
{
"properties": {
"source": { "$ref": "#/definitions/Source" }
"installPrefReq": { "$ref": "#/definitions/InstallPrefReq" }
},
"additionalItems": true
},
Expand All @@ -332,6 +338,24 @@
},
"additionalItems": true
},
{
"properties": {
"uninstallBehavior": { "$ref": "#/definitions/UninstallBehavior" }
},
"additionalItems": true
},
{
"properties": {
"configureBehavior": { "$ref": "#/definitions/ConfigureBehavior" }
},
"additionalItems": true
},
{
"properties": {
"downloadBehavior": { "$ref": "#/definitions/DownloadBehavior" }
},
"additionalItems": true
},
{
"properties": {
"telemetry": { "$ref": "#/definitions/Telemetry" }
Expand Down

0 comments on commit 9d0bc47

Please sign in to comment.