From 4797c56f4e4a139aff8ace065108c13316411e9b Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 10 Jan 2023 17:36:13 +0100 Subject: [PATCH] Fix rust-analyzer configuration in VS Code Seems like the configuration key changed at some point. --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index cf9bfe515..837a8d06b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,5 @@ "rust-analyzer.diagnostics.disabled": [ "mismatched-arg-count" ], - "rust-analyzer.checkOnSave.command": "clippy" + "rust-analyzer.check.command": "clippy" } \ No newline at end of file