Set clippy as the default build task
Also configure CodeLLDB as a recommended extension.
This commit is contained in:
parent
e51f9eb4fd
commit
b94356dfb7
3 changed files with 21 additions and 6 deletions
12
.vscode/tasks.json
vendored
12
.vscode/tasks.json
vendored
|
|
@ -3,7 +3,7 @@
|
|||
"tasks": [
|
||||
{
|
||||
"type": "cargo",
|
||||
"command": "check",
|
||||
"command": "clippy",
|
||||
"problemMatcher": [
|
||||
"$rustc"
|
||||
],
|
||||
|
|
@ -11,7 +11,13 @@
|
|||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"label": "Check"
|
||||
}
|
||||
"label": "rust: cargo clippy",
|
||||
"args": [
|
||||
"--workspace",
|
||||
"--all-targets",
|
||||
"--all-features",
|
||||
"--all"
|
||||
]
|
||||
},
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue