Byte-snake-engine/.devcontainer/devcontainer.json
bvanvugt 13cdcc771a
Some checks are pending
Test / Format (gofmt) (push) Waiting to run
Test / Lint (golangci-lint) (push) Waiting to run
Test / Test (go test) (push) Blocked by required conditions
Test / Build CLI (go install) (push) Blocked by required conditions
Bump dependencies.
2024-01-20 07:11:51 +00:00

17 lines
359 B
JSON

{
"name": "rules.battlesnake.local",
"image": "mcr.microsoft.com/devcontainers/go:1.21",
"postCreateCommand": "go mod download",
"forwardPorts": [],
"customizations": {
"vscode": {
"extensions": [
"golang.go"
],
"settings": {
"go.formatTool": "gofmt",
"go.lintTool": "golangci-lint"
}
}
}
}