tra-superscript/.devcontainer/devcontainer.json

23 lines
648 B
JSON
Raw Normal View History

{
"name": "TRA Analysis Development Environment",
"build": {
2022-03-15 05:31:51 +00:00
"dockerfile": "Dockerfile",
},
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "/usr/local/bin/pylint",
2022-03-29 04:15:47 +00:00
"python.linting.pylintArgs": ["--indent-string", "\t"],
"python.testing.pytestPath": "/usr/local/bin/pytest",
2022-03-29 04:15:47 +00:00
"editor.tabSize": 4,
"editor.insertSpaces": false
},
"extensions": [
"mhutchie.git-graph",
"ms-python.python",
"waderyan.gitblame"
],
"postCreateCommand": ""
}