-
Notifications
You must be signed in to change notification settings - Fork 9
/
.devcontainer.json
51 lines (51 loc) · 1.73 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
40
41
42
43
44
45
46
47
48
49
50
51
// https://containers.dev/implementors/json_reference/
// https://hub.docker.com/_/python
{
"name": "InChI",
"image": "gcc:14-bookworm",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": true,
"configureZshAsDefaultShell": true,
"installOhMyZsh": true,
"installOhMyZshConfig": true,
"upgradePackages": true,
"username": "automatic",
"userUid": "automatic",
"userGid": "automatic"
}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.scrollback": 5000,
"editor.formatOnSave": true,
"python": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
},
"extensions": [
"ms-vscode.cpptools",
"twxs.cmake",
"ms-vscode.cmake-tools",
"eamodio.gitlens",
"streetsidesoftware.code-spell-checker",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.black-formatter",
"ms-python.mypy-type-checker",
"ms-python.flake8",
"KevinRose.vsc-python-indent",
"ms-vscode.makefile-tools",
"GitHub.vscode-github-actions",
"ms-azuretools.vscode-docker",
"GitHub.copilot",
"qwtel.sqlite-viewer",
"ms-vscode.live-server",
"tamasfe.even-better-toml",
"DavidAnson.vscode-markdownlint"
]
}
},
"postCreateCommand": "cd INCHI-1-TEST && ./install.sh"
}