-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
38 lines (38 loc) · 1.17 KB
/
.devcontainer.json
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
30
31
32
33
34
35
36
37
38
{
"name": "dlinkscraper-dev",
"image": "ghcr.io/willfantom/devcontainer-go:latest",
"workspaceMount": "source=${localWorkspaceFolder}/,target=/workspace,type=bind,consistency=cached",
"workspaceFolder": "/workspace",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"settings": {
"files.eol": "\n",
"files.autoSave": "onFocusChange",
"editor.formatOnSave": true,
"rewrap.wrappingColumn": 80
},
"extensions": [
"naumovs.color-highlight",
"spikespaz.vscode-smoothtype",
"alefragnani.Bookmarks",
"oderwat.indent-rainbow",
"mechatroner.rainbow-csv",
"yzhang.markdown-all-in-one",
"eamodio.gitlens",
"mhutchie.git-graph",
"gruntfuggly.todo-tree",
"mohsen1.prettify-json",
"stkb.rewrap",
"shardulm94.trailing-spaces",
"streetsidesoftware.code-spell-checker",
"ms-azuretools.vscode-docker",
"golang.go",
"github.copilot",
"github.copilot-chat"
]
}
}
}