-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
50 lines (50 loc) · 1.44 KB
/
devcontainer.json
File metadata and controls
50 lines (50 loc) · 1.44 KB
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
{
"name": "AP-Prediction",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"customizations": {
"vscode": {
"settings": {
"python.pythonPath": "/usr/local/bin/python",
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.languageServer": "Pylance",
"flake8.path": [
"/usr/local/py-utils/bin/bandit",
"/usr/local/py-utils/bin/pydocstyle"
],
"flake8.importStrategy": "fromEnvironment"
},
"extensions": [
"AykutSarac.jsoncrack-vscode",
"eamodio.gitlens",
"geeebe.duplicate",
"Gruntfuggly.todo-tree",
"matangover.mypy",
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.isort",
"ms-python.pylint",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"njpwerner.autodocstring",
"njqdev.vscode-python-typehint",
"redhat.vscode-yaml",
"ryanluker.vscode-coverage-gutters",
"spmeesseman.vscode-taskexplorer",
"streetsidesoftware.code-spell-checker",
"tamasfe.even-better-toml",
"visualstudioexptteam.vscodeintellicode",
"yzhang.markdown-all-in-one"
]
}
},
"initializeCommand": "powershell.exe ./.devcontainer/initialize.ps1",
"postCreateCommand": "python -m pip install --upgrade pip; pip3 install -r ${containerWorkspaceFolder}/requirements-dev.txt",
"remoteUser": "vscode",
"mounts": [
"source=${localEnv:USERPROFILE}/_devcontainer/cache,target=/home/vscode/.cache,type=bind"
]
}