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

21 lines
468 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",
2023-09-28 19:20:13 -07:00
"image": "mcr.microsoft.com/devcontainers/go:1.18",
"postCreateCommand": "",
"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
"editor.formatOnSave": true,
"go.coverOnSave": true,
"go.coverageOptions": "showUncoveredCodeOnly",
"go.formatTool": "gofmt",
"go.lintTool": "golangci-lint"
2023-09-28 19:20:13 -07:00
}
}
}
}