From 31ab60c91031f2bdf446ee4a64b0e6ff384a09f6 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 2 Jan 2023 13:34:28 +0100 Subject: [PATCH] added vscode config files --- .vscode/launch.json | 16 ++++++++++++++++ .vscode/settings.json | 11 +++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..c356762 --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..883dd52 --- /dev/null +++ b/.vscode/settings.json @@ -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 +}