aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorClemens Wasser <[email protected]>2020-06-10 08:37:26 +0100
committerClemens Wasser <[email protected]>2020-06-10 08:37:26 +0100
commitfe21fc2d259cbe2a32bfee3432f2c51ade079083 (patch)
tree8a7aff5aaf97c0e7e31c4a771e0c1afc73aeca8f /editors
parent33b905883819038ad67476fe14b7b48212a73f93 (diff)
checkOnSafe.features and checkOnSafe.allFeatures now work identically.
Diffstat (limited to 'editors')
-rw-r--r--editors/code/package.json7
1 files changed, 5 insertions, 2 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 647c83685..e2027970d 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -326,11 +326,14 @@
326 "markdownDescription": "Check with all features (will be passed as `--all-features`). Defaults to `rust-analyzer.cargo.allFeatures`." 326 "markdownDescription": "Check with all features (will be passed as `--all-features`). Defaults to `rust-analyzer.cargo.allFeatures`."
327 }, 327 },
328 "rust-analyzer.checkOnSave.features": { 328 "rust-analyzer.checkOnSave.features": {
329 "type": "array", 329 "type": [
330 "null",
331 "array"
332 ],
330 "items": { 333 "items": {
331 "type": "string" 334 "type": "string"
332 }, 335 },
333 "default": [], 336 "default": null,
334 "description": "List of features to activate. Defaults to `rust-analyzer.cargo.features`." 337 "description": "List of features to activate. Defaults to `rust-analyzer.cargo.features`."
335 }, 338 },
336 "rust-analyzer.inlayHints.enable": { 339 "rust-analyzer.inlayHints.enable": {