From 43aab2ca7f8829703d833fff786f53b35ca0ba51 Mon Sep 17 00:00:00 2001 From: Ari LiVigni Date: Mon, 29 Jun 2026 18:47:22 -0400 Subject: [PATCH] fix: restore codespace sidebar and extension access - re-enable sidebar/activity bar and explorer surfaces in devcontainer settings\n- keep Copilot Chat disabled while preserving terminal-in-editor defaults\n- make terminal editor launch the final post-create action\n- ignore local Impeccable hook cache file Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .devcontainer/devcontainer.json | 8 ++++---- .devcontainer/postCreate.sh | 6 +++--- .gitignore | 3 +++ 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e6829c8..fd305a7 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -16,7 +16,7 @@ "settings": { "files.autoSave": "afterDelay", "workbench.statusBar.visible": false, - "workbench.sideBar.visible": false, + "workbench.sideBar.visible": true, "workbench.panel.defaultLocation": "bottom", "workbench.editor.showTabs": "none", "breadcrumbs.enabled": false, @@ -27,9 +27,9 @@ "*": false }, "github.copilot.editor.enableAutoCompletions": false, - "workbench.activityBar.location": "hidden", - "workbench.activityBar.visible": false, - "workbench.explorer.enabled": false, + "workbench.activityBar.location": "default", + "workbench.activityBar.visible": true, + "workbench.explorer.enabled": true, "github.copilot-chat.enable": false, "chat.disableAIFeatures": true, "chat.editor.show": false, diff --git a/.devcontainer/postCreate.sh b/.devcontainer/postCreate.sh index 6e1fa01..d4102a4 100644 --- a/.devcontainer/postCreate.sh +++ b/.devcontainer/postCreate.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -euo pipefail -# Match the terminal-in-editor experience used in the reference exercise. -code --command workbench.action.createTerminalEditor >/dev/null 2>&1 || true +echo "Configuring terminal to open in the editor area..." -echo "Terminal is configured to open in the editor area." +# Keep terminal launch as the final startup action. +code --command workbench.action.createTerminalEditor >/dev/null 2>&1 || true diff --git a/.gitignore b/.gitignore index d5d2301..b41637b 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,6 @@ package-lock.json .eslintcache dist/ build/ + +# Impeccable local cache +.impeccable/hook.cache.json