From f5b01d6544681a9db157b1a9a33c29149d4c590c Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 31 Mar 2020 15:55:05 +0200 Subject: WIP: uniformalize external tools config --- editors/code/package.json | 50 +++++++++++++++++++++++++++++++---------------- 1 file changed, 33 insertions(+), 17 deletions(-) (limited to 'editors/code') diff --git a/editors/code/package.json b/editors/code/package.json index 37e083220..ddc9de1ca 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -261,41 +261,57 @@ "default": [], "description": "Paths to exclude from analysis" }, - "rust-analyzer.rustfmtArgs": { + "rust-analyzer.useClientWatching": { + "type": "boolean", + "default": true, + "description": "client provided file watching instead of notify watching." + }, + "rust-analyzer.rustfmt.extraArgs": { "type": "array", "items": { "type": "string" }, "default": [], - "description": "Additional arguments to rustfmt" + "markdownDescription": "Additional `cargo fmt` arguments" }, - "rust-analyzer.useClientWatching": { + "rust-analyzer.rustfmt.overrideCommand": { + "type": "array", + "items": { + "type": "string" + }, + "default": [], + "markdownDescription": "Advanced option, fully override `cargo fmt` command line" + }, + "rust-analyzer.checkOnSave.enable": { "type": "boolean", "default": true, - "description": "client provided file watching instead of notify watching." + "markdownDescription": "Run `cargo check` command for diagnostics on save" + }, + "rust-analyzer.checkOnSave.cargoCommand": { + "type": "string", + "default": "check", + "markdownDescription": "Cargo command to run on save" }, - "rust-analyzer.cargo-watch.enable": { + "rust-analyzer.checkOnSave.allTargets": { "type": "boolean", "default": true, - "markdownDescription": "Run specified `cargo-watch` command for diagnostics on save" + "markdownDescription": "Check all targets and tests (will be passed as `--all-targets`)" }, - "rust-analyzer.cargo-watch.arguments": { + "rust-analyzer.checkOnSave.extraArgs": { "type": "array", "items": { "type": "string" }, - "markdownDescription": "`cargo-watch` arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )", + "markdownDescription": "Additional `cargo check` arguments", "default": [] }, - "rust-analyzer.cargo-watch.command": { - "type": "string", - "markdownDescription": "`cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )", - "default": "check" - }, - "rust-analyzer.cargo-watch.allTargets": { - "type": "boolean", - "markdownDescription": "Check all targets and tests (will be passed as `--all-targets`)", - "default": true + "rust-analyzer.checkOnSave.overrideCommand": { + "type": "array", + "items": { + "type": "string" + }, + "default": [], + "markdownDescription": "Advanced option, fully override `cargo check` command line (this must include at least `--message-format=json`)" }, "rust-analyzer.trace.server": { "type": "string", -- cgit v1.2.3