Skip to content

Commit

Permalink
Boolean default types should be boolean not string (#1732)
Browse files Browse the repository at this point in the history
  • Loading branch information
WardenGnaw authored Mar 23, 2018
1 parent 56fd1e7 commit e0bb796
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@
"ignoreFailures": {
"type": "boolean",
"description": "If true, failures from the command should be ignored. Default value is false.",
"default": "false"
"default": false
}
}
},
Expand All @@ -453,7 +453,7 @@
"ignoreFailures": {
"type": "boolean",
"description": "If true, failures from the command should be ignored. Default value is false.",
"default": ""
"default": false
}
}
},
Expand All @@ -476,7 +476,7 @@
"showDisplayString": {
"type": "boolean",
"description": "When a visualizerFile is specified, showDisplayString will enable the display string. Turning this option on can cause slower performance during debugging.",
"default": "true"
"default": true
},
"environment": {
"type": "array",
Expand Down Expand Up @@ -533,12 +533,12 @@
"filterStdout": {
"type": "boolean",
"description": "Search stdout stream for server-started pattern and log stdout to debug output. Defaults to true.",
"default": "true"
"default": true
},
"filterStderr": {
"type": "boolean",
"description": "Search stderr stream for server-started pattern and log stderr to debug output. Defaults to false.",
"default": "false"
"default": false
},
"serverLaunchTimeout": {
"type": "integer",
Expand All @@ -553,7 +553,7 @@
"externalConsole": {
"type": "boolean",
"description": "If true, a console is launched for the debuggee. If false, no console is launched. Note this option is ignored in some cases for technical reasons.",
"default": "false"
"default": false
},
"sourceFileMap": {
"type": "object",
Expand Down Expand Up @@ -673,7 +673,7 @@
"showDisplayString": {
"type": "boolean",
"description": "When a visualizerFile is specified, showDisplayString will enable the display string. Turning this option on can cause slower performance during debugging.",
"default": "true"
"default": true
},
"additionalSOLibSearchPath": {
"type": "string",
Expand Down Expand Up @@ -712,12 +712,12 @@
"filterStdout": {
"type": "boolean",
"description": "Search stdout stream for server-started pattern and log stdout to debug output. Defaults to true.",
"default": "true"
"default": true
},
"filterStderr": {
"type": "boolean",
"description": "Search stderr stream for server-started pattern and log stderr to debug output. Defaults to false.",
"default": "false"
"default": false
},
"sourceFileMap": {
"type": "object",
Expand Down Expand Up @@ -825,7 +825,7 @@
"ignoreFailures": {
"type": "boolean",
"description": "If true, failures from the command should be ignored. Default value is false.",
"default": "false"
"default": false
}
}
},
Expand Down Expand Up @@ -914,7 +914,7 @@
"externalConsole": {
"type": "boolean",
"description": "If true, a console is launched for the debuggee. If false, no console is launched.",
"default": "false"
"default": false
},
"sourceFileMap": {
"type": "object",
Expand Down

0 comments on commit e0bb796

Please sign in to comment.