2020-04-05 19:04:07 +00:00
|
|
|
{
|
|
|
|
"name": "TRA Analysis Development Environment",
|
|
|
|
"build": {
|
2021-01-27 03:46:29 +00:00
|
|
|
"dockerfile": "dev-dockerfile",
|
2020-04-05 19:04:07 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
},
|
2020-04-05 21:36:12 +00:00
|
|
|
"extensions": [
|
|
|
|
"mhutchie.git-graph",
|
2020-08-13 02:59:04 +00:00
|
|
|
"ms-python.python",
|
|
|
|
"waderyan.gitblame"
|
2020-04-05 21:36:12 +00:00
|
|
|
],
|
2021-01-27 03:46:29 +00:00
|
|
|
"postCreateCommand": "/usr/bin/pip3 install -r /workspaces/red-alliance-analysis/data-analysis/requirements.txt && /usr/bin/pip3 install -r /workspaces/red-alliance-analysis/analysis-master/requirements.txt && /usr/bin/pip3 install --no-cache-dir pylint && pip3 install pytest"
|
2020-04-05 19:04:07 +00:00
|
|
|
}
|