35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
|
{
|
||
|
"name": "Codespaces Python3",
|
||
|
"extensions": [
|
||
|
"cschleiden.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"
|
||
|
],
|
||
|
"dockerFile": "Dockerfile",
|
||
|
"postCreateCommand": "pip3 install -r requirements.txt",
|
||
|
"remoteEnv": {
|
||
|
"PATH": "${containerEnv:PATH}:/home/user/.local/bin"
|
||
|
},
|
||
|
"settings": {
|
||
|
"flake8.args": ["--config=setup.cfg"],
|
||
|
"pylint.args": ["--rcfile=setup.cfg"],
|
||
|
"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
|
||
|
}
|
||
|
}
|
||
|
}
|