vscode: added minimum bound for lruCapacity option

This commit is contained in:
Veetaha
2020-02-16 18:00:49 +02:00
parent 0565657ed1
commit 56b64cac9c

View File

@@ -235,6 +235,8 @@
"rust-analyzer.lruCapacity": {
"type": [ "null", "integer" ],
"default": null,
"minimum": 0,
"exclusiveMinimum": true,
"description": "Number of syntax trees rust-analyzer keeps in memory"
},
"rust-analyzer.displayInlayHints": {