diff options
author | Veetaha <[email protected]> | 2020-02-16 14:48:17 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-02-16 14:48:17 +0000 |
commit | 53b5f4ba98cfd5af8603c24720bdadd11bb4bfea (patch) | |
tree | e80588a2b183b4f3b74cdb464a8040de23147f0c /editors/code | |
parent | 77d27c67c1dadce4abe7a6a97c0b73eaa3706e60 (diff) |
vscode: update exclusiveMinimum validation according to JSONSchemaV4 specs
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/package.json | 3 |
1 files changed, 2 insertions, 1 deletions
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 @@ | |||
248 | "rust-analyzer.maxInlayHintLength": { | 248 | "rust-analyzer.maxInlayHintLength": { |
249 | "type": "number", | 249 | "type": "number", |
250 | "default": 20, | 250 | "default": 20, |
251 | "exclusiveMinimum": 0, | 251 | "minimum": 0, |
252 | "exclusiveMinimum": true, | ||
252 | "description": "Maximum length for inlay hints" | 253 | "description": "Maximum length for inlay hints" |
253 | }, | 254 | }, |
254 | "rust-analyzer.cargoFeatures.noDefaultFeatures": { | 255 | "rust-analyzer.cargoFeatures.noDefaultFeatures": { |