diff options
| author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2021-01-26 16:03:24 +0300 |
|---|---|---|
| committer | Aleksey Kladov <aleksey.kladov@gmail.com> | 2021-01-26 16:22:24 +0300 |
| commit | c04b561e7e7d031d7e1be9307fb8d539765768ff (patch) | |
| tree | ae162d1da52b375e1a1bf88f5de56b5021c38d79 /editors/code | |
| parent | 21660f1d979be43af579277ef487118d68533d41 (diff) | |
| download | rust-c04b561e7e7d031d7e1be9307fb8d539765768ff.tar.gz rust-c04b561e7e7d031d7e1be9307fb8d539765768ff.zip | |
Remove the need to manually sync config in package.json
Diffstat (limited to 'editors/code')
| -rw-r--r-- | editors/code/package.json | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 2225cf1ddb0..ee54638f183 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -349,6 +349,7 @@ "default": {}, "markdownDescription": "Optional settings passed to the debug engine. Example: `{ \"lldb\": { \"terminal\":\"external\"} }`" }, + "$generated-start": false, "rust-analyzer.assist.importMergeBehavior": { "markdownDescription": "The strategy to use when inserting new imports or merging imports.", "default": "full", @@ -390,7 +391,7 @@ "type": "boolean" }, "rust-analyzer.cargo.allFeatures": { - "markdownDescription": "Activate all available features.", + "markdownDescription": "Activate all available features (`--all-features`).", "default": false, "type": "boolean" }, @@ -431,7 +432,7 @@ "type": "boolean" }, "rust-analyzer.checkOnSave.allFeatures": { - "markdownDescription": "Check with all features (will be passed as `--all-features`). Defaults to `#rust-analyzer.cargo.allFeatures#`.", + "markdownDescription": "Check with all features (`--all-features`). Defaults to `#rust-analyzer.cargo.allFeatures#`.", "default": null, "type": [ "null", @@ -439,7 +440,7 @@ ] }, "rust-analyzer.checkOnSave.allTargets": { - "markdownDescription": "Check all targets and tests (will be passed as `--all-targets`).", + "markdownDescription": "Check all targets and tests (`--all-targets`).", "default": true, "type": "boolean" }, @@ -650,7 +651,7 @@ } }, "rust-analyzer.lruCapacity": { - "markdownDescription": "Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.", + "markdownDescription": "Number of syntax trees rust-analyzer keeps in memory. Defaults to 128.", "default": null, "type": [ "null", @@ -718,7 +719,8 @@ "items": { "type": "string" } - } + }, + "$generated-end": false } }, "problemPatterns": [ |
