brokeyourbike/microcart

View on GitHub
.devcontainer/devcontainer.json

Summary

Maintainability
Test Coverage
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/go
{
    "name": "microcart",
    // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
    "image": "mcr.microsoft.com/devcontainers/go:0-1.19",

    // Features to add to the dev container. More info: https://containers.dev/features.
    "features": {
        "ghcr.io/brokeyourbike/devcontainer-features/reflex:0": {},
        "ghcr.io/brokeyourbike/devcontainer-features/staticcheck:0": {
            "version": "2023.1"
        }
    },

    // Configure tool-specific properties.
    "customizations": {
        "vscode": {
            "extensions": [
                "golang.Go",
                "wayou.vscode-todo-highlight",
                "be5invis.toml",
                "GitHub.copilot"
            ]
        }
    }
}