2021-04-01 18:31:41 +00:00
|
|
|
{
|
|
|
|
"name": "TRA Analysis Development Environment",
|
|
|
|
"build": {
|
2021-04-02 21:35:05 +00:00
|
|
|
"dockerfile": "dev-dockerfile",
|
2021-04-01 18:31:41 +00:00
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
"python.linting.pylintEnabled": true,
|
2022-03-14 01:53:50 +00:00
|
|
|
"python.linting.pylintPath": "/usr/local/bin/pylint",
|
|
|
|
"python.testing.pytestPath": "/usr/local/bin/pytest",
|
|
|
|
"editor.tabSize": 4,
|
|
|
|
"editor.insertSpaces": false
|
2021-04-01 18:31:41 +00:00
|
|
|
},
|
|
|
|
"extensions": [
|
|
|
|
"mhutchie.git-graph",
|
|
|
|
"ms-python.python",
|
|
|
|
"waderyan.gitblame"
|
|
|
|
],
|
2021-04-12 06:30:21 +00:00
|
|
|
"postCreateCommand": "/usr/bin/pip3 install -r ${containerWorkspaceFolder}/src/requirements.txt && /usr/bin/pip3 install --no-cache-dir pylint && /usr/bin/pip3 install pytest"
|
2023-03-17 15:11:56 +00:00
|
|
|
}
|