-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathdevcontainer.json
More file actions
41 lines (41 loc) · 1.55 KB
/
devcontainer.json
File metadata and controls
41 lines (41 loc) · 1.55 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
{
"name": "Codespaces Python3",
"customizations": {
"vscode": {
"extensions": [
"GitHub.vscode-github-actions",
"eamodio.gitlens",
"github.vscode-pull-request-github",
"ms-azuretools.vscode-docker",
"ms-python.flake8",
"ms-python.pylint",
"ms-python.python",
"ms-vsliveshare.vsliveshare",
"nwgh.bandit",
"the-compiler.python-tox",
"vscode-icons-team.vscode-icons",
"visualstudioexptteam.vscodeintellicode"
],
"settings": {
"flake8.args": ["--config=setup.cfg"],
"pylint.args": ["--rcfile=setup.cfg", "--init-hook", "import sys;sys.path.append('src')"],
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'",
"terminal.integrated.fontSize": 14,
"files.exclude": {
"**/CODE_OF_CONDUCT.md": true,
"**/LICENSE": true
}
}
}
},
"remoteUser": "user",
"containerUser": "user",
"dockerFile": "Dockerfile",
"postCreateCommand": ".devcontainer/postCreateCommand.sh",
"updateContentCommand": "python2.7 setup.py install --user",
"remoteEnv": {
"PATH": "${containerEnv:PATH}:/home/user/.local/bin"
}
}