Initial commit

Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
This commit is contained in:
Thomas Klaehn
2026-02-08 07:28:32 +00:00
commit 2945d90d24
25 changed files with 3177 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
{
"name": "FIT Parser Go Development",
"image": "mcr.microsoft.com/devcontainers/go:1-1.23",
"customizations": {
"vscode": {
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.lintTool": "golangci-lint",
"go.lintOnSave": "package",
"editor.formatOnSave": true,
"go.formatTool": "goimports",
"[go]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
}
},
"extensions": [
"golang.go",
"streetsidesoftware.code-spell-checker",
"eamodio.gitlens",
"redhat.vscode-yaml"
]
}
},
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {}
},
"postCreateCommand": "go mod download",
"remoteUser": "vscode"
}