From e0c2538d80ea40948d1b104c8c44adf47a3da4ee Mon Sep 17 00:00:00 2001 From: Hein Date: Sat, 7 Dec 2024 12:56:21 +0200 Subject: [PATCH] Disabled audo doc gen --- .precommit-config | 2 +- .vscode/tasks.json | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .vscode/tasks.json diff --git a/.precommit-config b/.precommit-config index 60cb220..2aa98f6 100644 --- a/.precommit-config +++ b/.precommit-config @@ -1,3 +1,3 @@ # .precommit-config # Set to true to enable pre-commit checks, false to disable -run_checks=true +run_checks=false diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..64947f4 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,25 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Download Doc Generators", + "type": "shell", + "command": "./download-mdtopdf.sh", + "windows":{ + "type": "shell", + "command": "./download-mdtopdf.ps1" + } + }, + { + "label": "Run Doc Generators", + "type": "process", + "command": "./bin/go-mdtopdf-helper", + "windows":{ + "type": "process", + "command": "./bin/go-mdtopdf-helper.exe" + } + } + ] +} \ No newline at end of file