From 290e387556dd38687711c6480200ec40e47cf292 Mon Sep 17 00:00:00 2001 From: Scott Pruett Date: Mon, 23 May 2022 20:50:52 -0400 Subject: [PATCH] add VSCode tasks --- .vscode/tasks.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..de7e99f --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "cargo", + "command": "build", + "problemMatcher": [ + "$rustc" + ], + "group": "build", + "label": "rust: cargo build" + }, + { + "type": "cargo", + "command": "check", + "problemMatcher": [ + "$rustc" + ], + "group": "build", + "label": "rust: cargo check" + }, + { + "type": "cargo", + "command": "clippy", + "problemMatcher": [ + "$rustc" + ], + "group": "build", + "label": "rust: cargo clippy" + }, + { + "type": "cargo", + "command": "test", + "problemMatcher": [ + "$rustc" + ], + "group": "test", + "label": "rust: cargo test" + } + ] +} \ No newline at end of file