From 92db49087c8e83cbc4510c7aa956a61037f4f660 Mon Sep 17 00:00:00 2001 From: Jason Healy Date: Tue, 14 Jul 2026 13:59:05 -0400 Subject: [PATCH] add dev tools to devcontainer Adds all the dev tools listed in CONTRIBUTING.md#development-setup to the devcontainer configuration. --- .devcontainer/devcontainer.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 42d3f6b43..4014450b7 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,13 @@ { "image": "mcr.microsoft.com/devcontainers/go:latest", "features": { - "ghcr.io/devcontainers-extra/features/prek:1": {} + "ghcr.io/devcontainers-extra/features/go-task:1": {}, + "ghcr.io/devcontainers-extra/features/prek:1": {}, + "ghcr.io/devcontainers/features/node:2": { + "version": "22" + }, + "ghcr.io/devcontainers/features/python:1": { + "version": "3.12" + } } }