From fa2c99d8b09df896ae08cc0024d74bd5ce412a27 Mon Sep 17 00:00:00 2001 From: "Alessandro (Ale) Segala" <43508+ItalyPaleAle@users.noreply.github.com> Date: Tue, 13 Jun 2023 01:26:54 -0700 Subject: [PATCH] Update dev container (#1314) --- .devcontainer/devcontainer.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 09c5b88bd..9c7e75883 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -15,7 +15,9 @@ "features": { "ghcr.io/devcontainers/features/sshd:1": {}, "ghcr.io/devcontainers/features/github-cli:1": {}, - "ghcr.io/devcontainers/features/node": { "version": "lts"} + "ghcr.io/devcontainers/features/node": { + "version": "lts" + } }, "mounts": [ // Mount docker-in-docker library volume @@ -61,13 +63,16 @@ "ms-azuretools.vscode-dapr", "ms-azuretools.vscode-docker", "ms-kubernetes-tools.vscode-kubernetes-tools" - ], + ], "settings": { "go.toolsManagement.checkForUpdates": "local", "go.useLanguageServer": true, "go.gopath": "/go", - "go.buildTags": "e2e,perf,conftests,unit,integration_test,certtests", - "git.alwaysSignOff": true + "go.buildTags": "e2e,perf,conftests,unit,integration_test,certtests,allcomponents", + "git.alwaysSignOff": true, + "terminal.integrated.env.linux": { + "GOLANG_PROTOBUF_REGISTRATION_CONFLICT": "ignore" + } } } },