From e6299eb1bf960381c754334b1ad167286e0d8079 Mon Sep 17 00:00:00 2001 From: Dennis Eggen <3019773@stud.hs-mannheim.de> Date: Sun, 26 Oct 2025 13:05:57 +0100 Subject: [PATCH] =?UTF-8?q?python/.devcontainer/devcontainer.json=20hinzug?= =?UTF-8?q?ef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/.devcontainer/devcontainer.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 python/.devcontainer/devcontainer.json diff --git a/python/.devcontainer/devcontainer.json b/python/.devcontainer/devcontainer.json new file mode 100644 index 0000000..c1ea9fc --- /dev/null +++ b/python/.devcontainer/devcontainer.json @@ -0,0 +1,17 @@ +{ + "name": "Python 3.11 Dev Container", + "dockerFile": "Dockerfile", + "mounts": [ + "source=${localWorkspaceFolder},target=/workspace,type=bind" + ], + "settings": { + "python.linting.enabled": true, + "python.linting.pylintEnabled": true, + "python.formatting.provider": "black" + }, + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance" + ], + "postCreateCommand": "pip install --upgrade pip" +}