Fix up some vscode stuff

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2023-04-04 20:51:29 +02:00
parent ae72177f98
commit df83ae78d0
2 changed files with 30 additions and 1 deletions
+23
View File
@@ -44,8 +44,28 @@
"group": "none", "group": "none",
"problemMatcher": [] "problemMatcher": []
}, },
{
"label": "Clean (Windows)",
"type": "shell",
"command": "bundle",
"args": [
"exec",
"jekyll",
"clean",
"--destination",
"build"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{ {
"label": "Build (Windows)", "label": "Build (Windows)",
"dependsOn": [
"Clean (Windows)"
],
"type": "shell", "type": "shell",
"command": "bundle", "command": "bundle",
"args": [ "args": [
@@ -64,6 +84,9 @@
}, },
{ {
"label": "Build (WSL)", "label": "Build (WSL)",
"dependsOn": [
"Clean (Windows)"
],
"type": "process", "type": "process",
"options": { "options": {
"cwd": "build" "cwd": "build"
+7 -1
View File
@@ -17,6 +17,12 @@
"editor.formatOnSave": false, "editor.formatOnSave": false,
"editor.insertSpaces": false, "editor.insertSpaces": false,
"editor.autoIndent": "keep" "editor.autoIndent": "keep"
} },
"html.format.contentUnformatted": [
"pre",
"code",
"samp"
],
"html.format.wrapLineLength": 0
} }
} }