Byte-snake-engine/.devcontainer/devcontainer.json

18 lines
359 B
JSON
Raw Normal View History

2023-09-28 19:20:13 -07:00
{
2023-09-28 19:20:26 -07:00
"name": "rules.battlesnake.local",
2024-01-20 07:11:51 +00:00
"image": "mcr.microsoft.com/devcontainers/go:1.21",
"postCreateCommand": "go mod download",
2023-09-28 19:20:13 -07:00
"forwardPorts": [],
"customizations": {
"vscode": {
2023-09-29 02:32:34 +00:00
"extensions": [
"golang.go"
],
2023-09-28 19:20:13 -07:00
"settings": {
2023-09-29 02:32:34 +00:00
"go.formatTool": "gofmt",
"go.lintTool": "golangci-lint"
2023-09-28 19:20:13 -07:00
}
}
}
}