From 53b5f4ba98cfd5af8603c24720bdadd11bb4bfea Mon Sep 17 00:00:00 2001 From: Veetaha Date: Sun, 16 Feb 2020 16:48:17 +0200 Subject: vscode: update exclusiveMinimum validation according to JSONSchemaV4 specs --- editors/code/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'editors') diff --git a/editors/code/package.json b/editors/code/package.json index 96b8e9eb0..614d36cf7 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -248,7 +248,8 @@ "rust-analyzer.maxInlayHintLength": { "type": "number", "default": 20, - "exclusiveMinimum": 0, + "minimum": 0, + "exclusiveMinimum": true, "description": "Maximum length for inlay hints" }, "rust-analyzer.cargoFeatures.noDefaultFeatures": { -- cgit v1.2.3