aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
authorSteffen Lyngbaek <[email protected]>2020-03-12 15:43:07 +0000
committerSteffen Lyngbaek <[email protected]>2020-03-12 15:43:07 +0000
commita153b9087520012b5f815b4df6c3657d490b30c8 (patch)
treecd3e079deee667c1f600c5a6ddb8cd4cfc67c62c /editors/code/package.json
parent58248e24cd45adcbfd7bfd00e1487df196b4a8c6 (diff)
Make maxLength nullable again
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 296d6fe8e..78f3539e9 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -318,7 +318,10 @@
318 "description": "Whether to show function parameter name inlay hints at the call site" 318 "description": "Whether to show function parameter name inlay hints at the call site"
319 }, 319 },
320 "rust-analyzer.inlayHints.maxLength": { 320 "rust-analyzer.inlayHints.maxLength": {
321 "type": "integer", 321 "type": [
322 "null",
323 "integer"
324 ],
322 "default": 20, 325 "default": 20,
323 "minimum": 0, 326 "minimum": 0,
324 "exclusiveMinimum": true, 327 "exclusiveMinimum": true,