Created
February 24, 2020 03:27
-
-
Save stancel/b7dd61198f64503ca7916b2b9dc55b94 to your computer and use it in GitHub Desktop.
This is the VSCode tasks.json file that I auto download and populate into new Sphinx documentation repos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Sphinx", | |
"type": "shell", | |
"command": "make clean && make html", | |
"script": "build", | |
"path": ".", | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
}, | |
"problemMatcher": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment