github.com/grpc-ecosystem/grpc-gateway/v2@v2.19.1/.devcontainer/devcontainer.json (about) 1 // For format details, see https://aka.ms/devcontainer.json. 2 { 3 "name": "Go", 4 "build": { 5 "dockerfile": "../.github/Dockerfile", 6 "args": { 7 "NODE_VERSION": "10" 8 } 9 }, 10 "settings": { 11 "editor.formatOnSave": true, 12 "go.toolsManagement.checkForUpdates": "local", 13 "go.useLanguageServer": true, 14 "go.gopath": "/go", 15 "go.goroot": "/usr/local/go", 16 "bazel.buildifierExecutable": "/go/bin/buildifier", 17 "bazel.buildifierFixOnFormat": true, 18 "bazel.enableCodeLens": true, 19 }, 20 "extensions": [ 21 "golang.Go", 22 "bazelbuild.vscode-bazel", 23 ], 24 "remoteUser": "vscode" 25 }