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": [ "tasks": [
{ {
"type": "shell", "type": "shell",
"taskName": "cargo fmt", "label": "cargo fmt",
"command": "cargo", "command": "cargo",
"args": [ "args": [
"fmt", "fmt",
"--", "--",
"--write-mode", "--write-mode", "overwrite"
"overwrite" ],
"problemMatcher": [
"$rustc"
]
},
{
"type": "shell",
"label": "cargo doc",
"command": "cargo",
"args": [
"doc", "--open"
], ],
"problemMatcher": [ "problemMatcher": [
"$rustc" "$rustc"