{ "python.pythonPath": "${workspaceFolder}/.venv/bin/python3", "python.linting.enabled": true, "python.linting.flake8Enabled": true, "python.linting.pylintEnabled": false, "python.linting.flake8Path": "${workspaceFolder}/.venv/bin/flake8", "python.testing.pytestArgs": [ "tests" ], "python.testing.pytestEnabled": true, "python.testing.pytestPath": "${workspaceFolder}/.venv/bin/pytest", "python.formatting.provider": "black", "python.formatting.blackArgs": ["--line-length", "120", "--safe"], "python.linting.mypyEnabled": true, "python.linting.mypyPath": "${workspaceFolder}/.venv/bin/mypy", "python.sortImports.args": ["--force-single-line-imports", "--profile", "black"] }