Skip to content

Instantly share code, notes, and snippets.

@stancel
Created February 24, 2020 03:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stancel/b7dd61198f64503ca7916b2b9dc55b94 to your computer and use it in GitHub Desktop.
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
{
// 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