{ "name": "ddns-dev", "dockerComposeFile": [ "docker-compose.yml" ], "service": "vscode", "runServices": [ "vscode" ], "shutdownAction": "stopCompose", "postCreateCommand": "~/.windows.sh && go mod download && go mod tidy", "workspaceFolder": "/workspace", // "overrideCommand": "", "customizations": { "vscode": { "extensions": [ "golang.go", "eamodio.gitlens", // IDE Git information "davidanson.vscode-markdownlint", "ms-azuretools.vscode-docker", // Docker integration and linting "shardulm94.trailing-spaces", // Show trailing spaces "Gruntfuggly.todo-tree", // Highlights TODO comments "bierner.emojisense", // Emoji sense for markdown "stkb.rewrap", // rewrap comments after n characters on one line "vscode-icons-team.vscode-icons", // Better file extension icons "github.vscode-pull-request-github", // Github interaction "redhat.vscode-yaml", // Kubernetes, Drone syntax highlighting "bajdzis.vscode-database", // Supports connections to mysql or postgres, over SSL, socked "IBM.output-colorizer", // Colorize your output/test logs "github.copilot" // AI code completion // "mohsen1.prettify-json", // Prettify JSON data // "zxh404.vscode-proto3", // Supports Proto syntax // "jrebocho.vscode-random", // Generates random values // "alefragnani.Bookmarks", // Manage bookmarks // "quicktype.quicktype", // Paste JSON as code // "spikespaz.vscode-smoothtype", // smooth cursor animation ], "settings": { "files.eol": "\n", "editor.formatOnSave": true, "go.buildTags": "", "go.toolsEnvVars": { "CGO_ENABLED": "0" }, "go.useLanguageServer": true, "go.testEnvVars": { "CGO_ENABLED": "1" }, "go.testFlags": [ "-v", "-race" ], "go.testTimeout": "10s", "go.coverOnSingleTest": true, "go.coverOnSingleTestFile": true, "go.coverOnTestPackage": true, "go.lintTool": "golangci-lint", "go.lintOnSave": "package", "[go]": { "editor.codeActionsOnSave": { "source.organizeImports": true } }, "gopls": { "usePlaceholders": false, "staticcheck": true, "vulncheck": "Imports" }, "remote.extensionKind": { "ms-azuretools.vscode-docker": "workspace" } } } } }