burrow/.vscode/tasks.json
Conrad Kramer b94356dfb7 Set clippy as the default build task
Also configure CodeLLDB as a recommended extension.
2023-06-03 13:00:06 -04:00

23 lines
No EOL
323 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "clippy",
"problemMatcher": [
"$rustc"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "rust: cargo clippy",
"args": [
"--workspace",
"--all-targets",
"--all-features",
"--all"
]
},
]
}