aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
authorAleksei Sidorov <[email protected]>2019-06-24 11:02:20 +0100
committerAleksei Sidorov <[email protected]>2019-06-24 11:02:20 +0100
commit4722e6d491a29bdb077fc01aa8c5bdc734282c69 (patch)
tree681b4fd62ce9b2166180713236254a8a25f2b60f /editors/code/package.json
parent7d79be32801036c39507fe96f87ed316e3934662 (diff)
Introduce cargo-watch.check-command
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json7
1 files changed, 6 insertions, 1 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index c2ed8d126..e4fc682df 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -203,9 +203,14 @@
203 }, 203 },
204 "rust-analyzer.cargo-watch.check-arguments": { 204 "rust-analyzer.cargo-watch.check-arguments": {
205 "type": "string", 205 "type": "string",
206 "description": "`cargo-watch` check arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )", 206 "description": "`cargo-watch` arguments. (e.g: `--features=\"shumway,pdf\"` will run as `cargo watch -x \"check --features=\"shumway,pdf\"\"` )",
207 "default": "" 207 "default": ""
208 }, 208 },
209 "rust-analyzer.cargo-watch.check-command": {
210 "type": "string",
211 "description": "`cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )",
212 "default": "check"
213 },
209 "rust-analyzer.trace.server": { 214 "rust-analyzer.trace.server": {
210 "type": "string", 215 "type": "string",
211 "scope": "window", 216 "scope": "window",