This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.

42 lines
1.5 KiB
JSON
Raw Normal View History

2024-02-27 18:28:46 +08:00
{
"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",
2024-02-27 18:28:46 +08:00
"dockerFile": "Dockerfile",
"postCreateCommand": ".devcontainer/postCreateCommand.sh",
"updateContentCommand": "python2.7 setup.py install --user",
2024-02-27 18:28:46 +08:00
"remoteEnv": {
"PATH": "${containerEnv:PATH}:/home/user/.local/bin"
}
}