Skip to content

Commit

Permalink
build: update devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiola committed Nov 4, 2024
1 parent 294f58b commit 563a91a
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,32 @@
"image": "golang:1.23.2",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {"username": "golang"},
"ghcr.io/devcontainers/features/git:1": {"version": "latest","ppa": "false"},
"ghcr.io/devcontainers/features/go:1": {"version": "none", "golangciLintVersion": "1.61.0"}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
"seccomp=unconfined",
"--cap-add=SYS_PTRACE"
],
"customizations": {
"vscode": {
"settings": {
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": false,
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go",
"go.buildFlags": [
"-tags=conformance,integration"
]
"go.useLanguageServer": true,
"go.toolsManagement.checkForUpdates": "local",
"go.buildFlags": ["-tags=conformance,integration"]
},
"extensions": [
"editorconfig.editorconfig",
"golang.go",
"redhat.vscode-yaml",
"davidanson.vscode-markdownlint",
"timonwong.shellcheck"
"timonwong.shellcheck",
"editorconfig.editorconfig",
"davidanson.vscode-markdownlint"
]
},
"codespaces": {
Expand Down

0 comments on commit 563a91a

Please sign in to comment.