File: devcontainer.json

package info (click to toggle)
gobuster 3.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 932 kB
  • sloc: makefile: 7
file content (29 lines) | stat: -rw-r--r-- 888 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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 to add to the dev container. More info: https://containers.dev/features.
  "features": {
    "ghcr.io/guiyomh/features/golangci-lint:0": {},
    "ghcr.io/devcontainers-extra/features/go-task:1": {}
  },
  "postCreateCommand": {
    "install dependencies": "task deps"
  },
  "customizations": {
    "vscode": {
      "extensions": [
        "golang.go",
        "shardulm94.trailing-spaces",
        "IBM.output-colorizer",
        "github.vscode-github-actions",
        "ms-azuretools.vscode-docker",
        "task.vscode-task",
        "redhat.vscode-yaml",
        "usernamehw.errorlens",
        "Gruntfuggly.todo-tree"
      ]
    }
  }
}