diff options
| author | Ralf Jung <post@ralfj.de> | 2022-08-19 08:23:58 -0400 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-08-19 08:57:22 -0400 |
| commit | 4af9829dcfe906cbe04aba247bc3759cab787a9e (patch) | |
| tree | cc46fe8df454408a5a87dc42b62360cba887d4a8 /editors/code/package.json | |
| parent | 2f02ea03b0934095a142e904dd587e32bcf5f437 (diff) | |
| download | rust-4af9829dcfe906cbe04aba247bc3759cab787a9e.tar.gz rust-4af9829dcfe906cbe04aba247bc3759cab787a9e.zip | |
document interaction of checkOnSave.overrideCommand and multiple linked projects
Diffstat (limited to 'editors/code/package.json')
| -rw-r--r-- | editors/code/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index 2e38c057302..67eabc313c8 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -547,7 +547,7 @@ ] }, "rust-analyzer.checkOnSave.overrideCommand": { - "markdownDescription": "Override the command rust-analyzer uses instead of `cargo check` for\ndiagnostics on save. The command is required to output json and\nshould therefor include `--message-format=json` or a similar option.\n\nIf you're changing this because you're using some tool wrapping\nCargo, you might also want to change\n`#rust-analyzer.cargo.buildScripts.overrideCommand#`.\n\nAn example command would be:\n\n```bash\ncargo check --workspace --message-format=json --all-targets\n```\n.", + "markdownDescription": "Override the command rust-analyzer uses instead of `cargo check` for\ndiagnostics on save. The command is required to output json and\nshould therefor include `--message-format=json` or a similar option.\n\nIf you're changing this because you're using some tool wrapping\nCargo, you might also want to change\n`#rust-analyzer.cargo.buildScripts.overrideCommand#`.\n\nIf there are multiple linked projects, this command is invoked for\neach of them, with the working directory being the project root\n(i.e., the folder containing the `Cargo.toml`).\n\nAn example command would be:\n\n```bash\ncargo check --workspace --message-format=json --all-targets\n```\n.", "default": null, "type": [ "null", |
