From 34e4eea1625297cf9db4df20ce7522de77292267 Mon Sep 17 00:00:00 2001 From: djmil Date: Wed, 8 Apr 2026 21:04:48 +0000 Subject: [PATCH] install tools on devcontainer creation this will stop vscode's Go extension of installing `golangci-lint@latest` --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ead3123..d1d996d 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,7 @@ "remoteUser": "vscode", // Run once after the container is created. - "postCreateCommand": "make init", + "postCreateCommand": "make init && make tools", // Fix ownership of the mounted ~/.claude so the vscode user can read host auth. "postStartCommand": "sudo chown -R vscode:vscode /home/vscode/.claude 2>/dev/null || true",