From 728a25d9d919f0e0f776390195dd1fa9e00ddbb4 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Wed, 12 Jul 2023 15:19:39 -0400 Subject: [PATCH] vscode: check all targets Now that building integration tests works out of the box, we can. --- .vscode/settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 07c919f9..f922a6df 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,4 @@ { - "rust-analyzer.checkOnSave.allTargets": false, - "rust-analyzer.checkOnSave.command": "clippy" + "rust-analyzer.check.allTargets": true, + "rust-analyzer.check.command": "clippy" }