mirror of
https://github.com/titanscouting/tra-superscript.git
synced 2024-11-10 06:54:45 +00:00
08292d5dc8
Former-commit-id: eb5d89ea35
28 lines
1.2 KiB
JSON
28 lines
1.2 KiB
JSON
{
|
|
"name": "TRA Analysis Development Environment",
|
|
"build": {
|
|
"dockerfile": "dev-dockerfile",
|
|
},
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
"python.linting.enabled": true,
|
|
"python.linting.pylintEnabled": true,
|
|
"python.formatting.autopep8Path": "/usr/local/py-utils/bin/autopep8",
|
|
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
|
|
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
|
|
"python.linting.banditPath": "/usr/local/py-utils/bin/bandit",
|
|
"python.linting.flake8Path": "/usr/local/py-utils/bin/flake8",
|
|
"python.linting.mypyPath": "/usr/local/py-utils/bin/mypy",
|
|
"python.linting.pycodestylePath": "/usr/local/py-utils/bin/pycodestyle",
|
|
"python.linting.pydocstylePath": "/usr/local/py-utils/bin/pydocstyle",
|
|
"python.linting.pylintPath": "/usr/local/py-utils/bin/pylint",
|
|
"python.testing.pytestPath": "/usr/local/py-utils/bin/pytest"
|
|
},
|
|
"extensions": [
|
|
"mhutchie.git-graph",
|
|
"ms-python.python",
|
|
"waderyan.gitblame"
|
|
],
|
|
"postCreateCommand": "/usr/bin/pip3 install -r ${containerWorkspaceFolder}/src/requirements.txt && /usr/bin/pip3 install --no-cache-dir pylint && /usr/bin/pip3 install pytest"
|
|
} |