From bd10e2f7a6473b89104bb2a7a1269e928b057070 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Wed, 5 Mar 2025 02:49:01 -0500 Subject: [PATCH] Set up VSCode for Rust yeahhhhh ik you're not really supposed to commit this file but i'm the only contributor so whatevs --- .vscode/settings.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..889f196 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "[rust]": { + "editor.defaultFormatter": "rust-lang.rust-analyzer", + "editor.formatOnSave": true + }, + "rust-analyzer.check.command": "clippy", // "check", // + "rust-analyzer.cargo.targetDir": true +}