diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 0ae8064..5e1c8c6 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -5,7 +5,12 @@ "label": "Ruff: Check", "type": "shell", "command": "uv", - "args": ["run", "ruff", "check", "."], + "args": [ + "run", + "ruff", + "check", + "." + ], "options": { "cwd": "${workspaceFolder}" }, @@ -15,7 +20,11 @@ "label": "Ty: Check", "type": "shell", "command": "uv", - "args": ["run", "ty", "check"], + "args": [ + "run", + "ty", + "check" + ], "options": { "cwd": "${workspaceFolder}" }, @@ -25,7 +34,11 @@ "label": "Docs: Build", "type": "shell", "command": "uv", - "args": ["run", "zensical", "build"], + "args": [ + "run", + "zensical", + "build" + ], "options": { "cwd": "${workspaceFolder}" }, @@ -56,7 +69,12 @@ "label": "Docker: Compose Up (Build)", "type": "shell", "command": "docker", - "args": ["compose", "up", "--build"], + "args": [ + "compose", + "up", + "--build", + "-d" + ], "options": { "cwd": "${workspaceFolder}" },