Add doc task for this project.

This commit is contained in:
Jeremy Wall 2017-11-15 22:45:09 -06:00
parent 2382cf9874
commit fc757eee1f

16
.vscode/tasks.json vendored
View File

@ -5,13 +5,23 @@
"tasks": [
{
"type": "shell",
"taskName": "cargo fmt",
"label": "cargo fmt",
"command": "cargo",
"args": [
"fmt",
"--",
"--write-mode",
"overwrite"
"--write-mode", "overwrite"
],
"problemMatcher": [
"$rustc"
]
},
{
"type": "shell",
"label": "cargo doc",
"command": "cargo",
"args": [
"doc", "--open"
],
"problemMatcher": [
"$rustc"