tcpasters/.vscode/tasks.json
Thorsten Schubert 41e469d4cf
All checks were successful
continuous-integration/drone/push Build is passing
Filter cli admin tool
2022-04-07 20:22:33 +00:00

41 lines
No EOL
597 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "test",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "test",
"isDefault": true
},
"label": "rust: cargo test"
},
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "rust: cargo build"
},
{
"type": "cargo",
"command": "fmt",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "none",
"isDefault": true
},
"label": "rust: cargo fmt"
}
]
}