Update vscode tasks to include mkdocs

This commit is contained in:
David Stephens 2018-12-26 11:56:57 +00:00
parent 442ee0e4ac
commit 75d5619a8d

14
.vscode/tasks.json vendored
View file

@ -22,10 +22,22 @@
} }
}, },
{ {
"label": "Run Ansible-Lint", "label": "Run ansible-lint",
"type": "shell", "type": "shell",
"command": "ansible-lint nas.yml", "command": "ansible-lint nas.yml",
"group": "test" "group": "test"
},
{
"label": "Serve docs locally (mkdocs serve)",
"type": "shell",
"command": "mkdocs serve",
"group": "test"
},
{
"label": "Deploy docs to GitHub (mkdocs gh-deploy)",
"type": "shell",
"command": "mkdocs gh-deploy",
"group": "build"
} }
] ]
} }