diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..a0f84729 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,21 @@ +{ + "name": "Go", + "image": "mcr.microsoft.com/devcontainers/go:1.22", + "customizations": { + "codespaces": { + "openFiles": [ + "CODE_OF_CONDUCT.md", + "CONTRIBUTING.md", + "README.md", + "languages.json" + ] + }, + "vscode": { + "extensions": ["golang.go"], + "settings": { + "go.gopath": "/go" + } + } + }, + "remoteUser": "vscode" +}