From dc56adca5b4c70a476f345976d75e763fcd128b9 Mon Sep 17 00:00:00 2001 From: Christian Ege Date: Sat, 13 Apr 2024 19:00:41 +0200 Subject: [PATCH] build: add goimports to postCreateCommand.sh --- .devcontainer/postCreateCommand.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.devcontainer/postCreateCommand.sh b/.devcontainer/postCreateCommand.sh index 9fa2e0b..8fa473d 100755 --- a/.devcontainer/postCreateCommand.sh +++ b/.devcontainer/postCreateCommand.sh @@ -20,3 +20,6 @@ pip3 install --break-system-packages -r requirements.txt # Go CI Lint curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$(go env GOPATH)/bin" v1.54.0 + +# Go tools +go install golang.org/x/tools/cmd/goimports@latest