From 31102139ec726008e475a55b3234dd78c85dc43c Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Mon, 7 Jul 2025 17:26:30 +0000 Subject: [PATCH] include black formatter and a bindmount for docs repo (one folder behind relative to FTL repo) for ease of testing generated markdown file Signed-off-by: Adam Warner --- .devcontainer/devcontainer.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index bbf320fb..b6905a4f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,13 +9,15 @@ "ms-vscode.cpptools-extension-pack", "eamodio.gitlens", "github.copilot", - "ms-python.python" + "ms-python.python", + "ms-python.black-formatter" ] } }, "mounts": [ "type=bind,source=${localEnv:HOME}/.ssh,target=/root/.ssh,readonly", - "type=bind,source=/var/www/html/admin,target=/var/www/html/admin,readonly" + "type=bind,source=/var/www/html/admin,target=/var/www/html/admin,readonly", + "type=bind,source=${localWorkspaceFolder}/../docs,target=/workspaces/docs/" ] }