From dc319ea8627a2124da5d86a806a1a0218229b74a Mon Sep 17 00:00:00 2001 From: Ruediger Ludwig Date: Sat, 3 Dec 2022 12:11:39 +0100 Subject: [PATCH] changed some settings --- .vscode/settings.json | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 3e39b85..de61139 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,22 +1,23 @@ { - "python.terminal.activateEnvInCurrentTerminal": true, - "python.analysis.diagnosticMode": "workspace", - "python.linting.flake8Enabled": true, - "python.analysis.typeCheckingMode": "strict", "files.exclude": { ".venv/": true, "**/__pycache__/": true, "**/.pytest_cache/": true, "**/*.egg-info/": true }, - "python.testing.pytestArgs": [], - "python.testing.unittestEnabled": false, - "python.testing.pytestEnabled": true, + "python.analysis.autoImportCompletions": true, + "python.analysis.diagnosticMode": "workspace", + "python.analysis.typeCheckingMode": "strict", "python.formatting.autopep8Args": [ "--max-line-length", "100", "--aggressive", "--ignore", "W503" - ] + ], + "python.linting.flake8Enabled": true, + "python.terminal.activateEnvInCurrentTerminal": true, + "python.testing.pytestArgs": [], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true } \ No newline at end of file