From bf872f09ca9a6b57fda16267712ec161e1c38372 Mon Sep 17 00:00:00 2001 From: Nicholas O'Brien Date: Tue, 30 Jan 2024 16:05:15 +0000 Subject: [PATCH] removes the clippy fix on save because it was causing holding a write lock on the files for too long making iteration annoying. --- .devcontainer/devcontainer.json | 9 --------- .vscode/settings.json | 9 --------- 2 files changed, 18 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b48c8eee8..7c3976274 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -26,15 +26,6 @@ "go.goroot": "/usr/local/go", // RUST "rust-analyzer.check.command": "clippy", - "rust-analyzer.checkOnSave.overrideCommand": [ - "cargo", - "clippy", - "--fix", - "--workspace", - "--message-format=json", - "--all-targets", - "--allow-dirty" - ], // Formatting "editor.formatOnSave": true, "files.trimTrailingWhitespace": true, diff --git a/.vscode/settings.json b/.vscode/settings.json index 09970e7a8..75e520d59 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,13 +4,4 @@ "rust-analyzer" ], "rust-analyzer.check.command": "clippy", - "rust-analyzer.checkOnSave.overrideCommand": [ - "cargo", - "clippy", - "--fix", - "--workspace", - "--message-format=json", - "--all-targets", - "--allow-dirty" - ], }