1
1
Fork 0
mirror of https://github.com/OJ/gobuster.git synced 2024-05-26 04:16:02 +02:00
gobuster/.devcontainer/devcontainer.json
2024-04-22 22:27:19 +02:00

31 lines
1.1 KiB
JSON

// 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": "Go",
"image": "mcr.microsoft.com/devcontainers/go",
"features": {
"ghcr.io/guiyomh/features/golangci-lint:0": {},
"ghcr.io/devcontainers-contrib/features/go-task:1": {}
},
"postCreateCommand": "go mod download",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "go version",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"golang.go",
"shardulm94.trailing-spaces",
"IBM.output-colorizer",
"task.vscode-task",
"github.vscode-github-actions",
"redhat.vscode-yaml",
"usernamehw.errorlens"
]
}
}
}