{ "folders": [ { "path": ".", "name": "WebDrop Bridge" } ], "settings": { "python.defaultInterpreterPath": "${workspaceFolder}/venv/bin/python", "python.linting.enabled": true, "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": false, "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.organizeImports": "explicit" } }, "python.testing.pytestEnabled": true, "python.testing.pytestArgs": [ "tests" ], "files.exclude": { "**/__pycache__": true, "**/*.pyc": true, "**/*.pyo": true, ".pytest_cache": true, ".tox": true, "build": true, "dist": true, "*.egg-info": true }, "search.exclude": { "**/__pycache__": true, ".venv": true, "venv": true, "build": true, "dist": true } }, "extensions": { "recommendations": [ "ms-python.python", "ms-python.vscode-pylance", "ms-python.black-formatter", "charliermarsh.ruff", "ms-python.debugpy", "ms-python.flake8", "ms-vscode.makefile-tools" ] } }