[json] Allow "json.validate.enable": false in settings / disable JSON validation or error checking. Fixes #114775

This commit is contained in:
Martin Aeschlimann
2022-04-12 15:33:14 +02:00
parent 4f4bf42424
commit 8f5b743a0b
9 changed files with 55 additions and 34 deletions

View File

@@ -73,6 +73,12 @@
}
}
},
"json.validate.enable": {
"type": "boolean",
"scope": "window",
"default": true,
"description": "%json.validate.enable.desc%"
},
"json.format.enable": {
"type": "boolean",
"scope": "window",
@@ -141,8 +147,8 @@
]
},
"dependencies": {
"request-light": "^0.5.7",
"@vscode/extension-telemetry": "0.4.10",
"@vscode/extension-telemetry": "0.5.0",
"request-light": "^0.5.8",
"vscode-languageclient": "^7.0.0",
"vscode-nls": "^5.0.0"
},