From 5af383ac3ea39b59e235f41d496c5f0393c4a519 Mon Sep 17 00:00:00 2001 From: ThePhaseless Date: Sun, 8 Feb 2026 11:50:46 +0000 Subject: [PATCH] add toml extension to devcontainer --- .devcontainer/devcontainer.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index fd7dc43..a698568 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,7 +9,11 @@ "runArgs": ["--security-opt", "label=disable", "--privileged"], "customizations": { "vscode": { - "extensions": ["charliermarsh.ruff", "ms-python.python"], + "extensions": [ + "charliermarsh.ruff", + "ms-python.python", + "tamasfe.even-better-toml" + ], "settings": { "python.venvPath": "./venv" }