{
"version": "2.0.0",
"tasks": [
{
"label": "Rust: cargo watch -x build",
"type": "shell",
"command": "cargo watch --clear --quiet --exec build",
"problemMatcher": []
},
{
"label": "Rust: cargo watch -x run",
"type": "shell",
"command": "cargo watch --clear --quiet --exec run",
"problemMatcher": []
},
{
"label": "Rust: cargo watch -x test",
"type": "shell",
"command": "cargo watch --clear --quiet --exec test",
"problemMatcher": []
},
{
"label": "Rust: cargo watch -x check",
"type": "shell",
"command": "cargo watch --clear --quiet --exec check",
"problemMatcher": []
},
{
"label": "Rust: cargo clippy",
"type": "shell",
"command": "cargo clippy --quiet -- -W clippy::pedantic -A clippy::missing_errors_doc -A clippy::must_use_candidate",
"problemMatcher": []
}
]
}