You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: editors/code/package.json
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -248,6 +248,13 @@
248
248
"default": [],
249
249
"description": "Additional arguments to rustfmt"
250
250
},
251
+
"rust-analyzer.rustfmt.overrideCommand": {
252
+
"type": "array",
253
+
"items": {
254
+
"type": "string"
255
+
},
256
+
"markdownDescription": "Advanced option, fully override the command rust-analyzer uses for formatting."
257
+
},
251
258
"rust-analyzer.checkOnSave.enable": {
252
259
"type": "boolean",
253
260
"default": true,
@@ -266,6 +273,13 @@
266
273
"default": "check",
267
274
"markdownDescription": "Cargo command to use for `cargo check`"
268
275
},
276
+
"rust-analyzer.checkOnSave.overrideCommand": {
277
+
"type": "array",
278
+
"items": {
279
+
"type": "string"
280
+
},
281
+
"markdownDescription": "Advanced option, fully override the command rust-analyzer uses for checking. The command must include `--message=format=json`."
0 commit comments