Add a vscode task I commonly use

This commit is contained in:
Jeremy Wall 2017-11-08 20:11:53 -06:00
parent b8c7d660e5
commit 45453e4544

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

@ -0,0 +1,18 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"taskName": "cargo fmt",
"command": "cargo",
"args": [
"fmt"
],
"problemMatcher": [
"$rustc"
]
}
]
}