Füge VSCode-Build-Tasks hinzu: Erstelle Aufgaben für den Build-Prozess und Clippy-Überprüfungen.

This commit is contained in:
Torsten Schulz (local)
2025-12-13 23:40:20 +01:00
parent ce06b1a4f0
commit 2aa4e7c666
2 changed files with 49 additions and 117 deletions

17
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build and clippy",
"type": "shell",
"command": "cargo build && cargo clippy",
"group": "build"
},
{
"label": "cargo build",
"type": "shell",
"command": "cargo build",
"group": "build"
}
]
}