-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy path.devcontainer.json
39 lines (39 loc) · 1.01 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
39
{
"image": "nvcr.io/nvidia/pytorch:24.10-py3",
"containerUser": "root",
"name": "ya_fsdp",
"runArgs": [
"--name", "ya_fsdp",
"--restart", "unless-stopped"
],
"postCreateCommand": {
"packages-editable-mode-compat": "pip install --config-settings editable_mode=compat -e /workspaces/YaFSDP"
},
"customizations": {
"vscode": {
"settings": {
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"isort.check": true,
"isort.path": [
"/usr/local/bin/isort"
],
"black-formatter.path": [
"/usr/local/bin/black"
]
},
"extensions": [
"DavidAnson.vscode-markdownlint",
"jeff-hykin.better-dockerfile-syntax",
"jeff-hykin.better-shellscript-syntax",
"ms-python.black-formatter",
"ms-python.isort",
"ms-python.python",
"ms-toolsai.jupyter",
"streetsidesoftware.code-spell-checker",
"timonwong.shellcheck"
]
}
}
}