added vscode config files

This commit is contained in:
Oliver Hartmann 2023-01-02 13:34:28 +01:00
parent 3733a179f3
commit 31ab60c910
2 changed files with 27 additions and 0 deletions

16
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Trader",
"type": "python",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal"
}
]
}

11
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"python.pythonPath": ".venv\\Scripts\\python.exe",
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true
}