Skip to content

Commit 0f6a10b

Browse files
committed
Fixes microsoft#2856: [json] Warnings in status bar after updating to version 0.10.8
1 parent b58ed36 commit 0f6a10b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

extensions/php/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"description": "Whether php validation is enabled or not."
2828
},
2929
"php.validate.executablePath": {
30-
"type": "string",
30+
"type": ["string", "null"],
3131
"default": null,
3232
"description": "Points to the php executable."
3333
},

extensions/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"description": "Complete functions with their parameter signature."
6565
},
6666
"typescript.tsdk": {
67-
"type": "string",
67+
"type": ["string", "null"],
6868
"default": null,
6969
"description": "Specifies the folder path containing the tsserver and lib*.d.ts files to use."
7070
}

src/vs/workbench/parts/git/browser/gitWorkbenchContributions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ export function registerContributions(): void {
501501
default: true
502502
},
503503
"git.path": {
504-
type: 'string',
504+
type: ['string', 'null'],
505505
description: nls.localize('gitPath', "Path to the git executable"),
506506
default: null
507507
},

0 commit comments

Comments
 (0)