{ "folders": [ { "name": "DataOps Platform", "path": "." } ], "settings": { "python.defaultInterpreterPath": "./venv/Scripts/python.exe", "python.terminal.activateEnvironment": true, "python.linting.enabled": true, "python.linting.flake8Enabled": true, "python.formatting.provider": "black", "python.testing.pytestEnabled": true, "python.testing.pytestArgs": [ "tests" ], "files.exclude": { "**/__pycache__": true, "**/*.pyc": true, "**/venv": true, "**/.git": true }, "search.exclude": { "**/venv": true, "**/__pycache__": true, "**/*.pyc": true } }, "extensions": { "recommendations": [ "ms-python.python", "ms-python.flake8", "ms-python.black-formatter", "ms-python.mypy-type-checker", "ms-python.pytest-adapter" ] } }