From 9d97ee6244631f1558fc3a9c430f00401a35776a Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Sun, 21 Jul 2024 02:54:01 +0000 Subject: [PATCH] Added some extensions for the devcontainer. --- .devcontainer/devcontainer.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 70e91b2..edc63c0 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -5,6 +5,17 @@ "build": { "context": "..", "dockerfile": "Dockerfile" + }, + "customizations": { + "vscode": { + "extensions": [ + "ms-python.debugpy", + "ms-python.python", + "ms-python.vscode-pylance", + "ms-python.black-formatter", + "ms-python.flake8" + ] + } } // Features to add to the dev container. More info: https://containers.dev/features.