diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index db91c6e..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "type": "process", - "command": "${config:python.pythonPath}", - "args": ["-m", "mkdocs", "build"], - "problemMatcher": [], - "group": { - "kind": "build", - "isDefault": true - } - }, - { - "label": "serve", - "type": "process", - "command": "${config:python.pythonPath}", - "args": ["-m", "mkdocs", "serve"], - "problemMatcher": [], - }, - { - "label": "deploy", - "type": "process", - "command": "${config:python.pythonPath}", - "args": ["-m", "mkdocs", "gh-deploy"], - "problemMatcher": [], - }, - // Reference globally-installed MkDocs. - { - "label": "build-global", - "type": "shell", - "command": "mkdocs build", - "problemMatcher": [], - }, - { - "label": "serve-global", - "type": "shell", - "command": "mkdocs serve", - "problemMatcher": [], - }, - { - "label": "deploy-global", - "type": "shell", - "command": "mkdocs gh-deploy", - "problemMatcher": [], - } - ] -}