-
Notifications
You must be signed in to change notification settings - Fork 4
/
.devcontainer.json
35 lines (35 loc) · 968 Bytes
/
.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
{
"name": "Swift",
"image": "swift:5.10",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "false",
"username": "vscode",
"userUid": "1000",
"userGid": "1000",
"upgradePackages": "false"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "os-provided",
"ppa": "false"
},
"ghcr.io/losfarmosctl/swift-devcontainer-features/apple-swift-format:latest": {},
"ghcr.io/losfarmosctl/swift-devcontainer-features/swiftlint:latest": {}
},
"runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"],
"customizations": {
"vscode": {
"settings": {
"lldb.library": "/usr/lib/liblldb.so"
},
"extensions": [
"sswg.swift-lang",
"vknabel.vscode-swiftlint",
"vknabel.vscode-apple-swift-format"
]
}
},
"forwardPorts": [],
"postCreateCommand": "swift --version",
"remoteUser": "vscode"
}