Skip to content

Commit

Permalink
Add devcontainer config (#541)
Browse files Browse the repository at this point in the history
* Add devcontainer config

* Open files by default in codespace

* Open `languages.json`
  • Loading branch information
spenserblack authored Oct 21, 2024
1 parent 440b0ef commit 10eacba
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "Go",
"image": "mcr.microsoft.com/devcontainers/go:1.22",
"customizations": {
"codespaces": {
"openFiles": [
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"README.md",
"languages.json"
]
},
"vscode": {
"extensions": ["golang.go"],
"settings": {
"go.gopath": "/go"
}
}
},
"remoteUser": "vscode"
}

0 comments on commit 10eacba

Please sign in to comment.