Byte-snake-engine/.devcontainer/devcontainer.json
2023-09-29 02:32:34 +00:00

20 lines
468 B
JSON

{
"name": "rules.battlesnake.local",
"image": "mcr.microsoft.com/devcontainers/go:1.18",
"postCreateCommand": "",
"forwardPorts": [],
"customizations": {
"vscode": {
"extensions": [
"golang.go"
],
"settings": {
"editor.formatOnSave": true,
"go.coverOnSave": true,
"go.coverageOptions": "showUncoveredCodeOnly",
"go.formatTool": "gofmt",
"go.lintTool": "golangci-lint"
}
}
}
}