{ "python.defaultInterpreterPath": ".venv/bin/python", "python.testing.pytestEnabled": true, "python.linting.enabled": true, "python.linting.flake8Enabled": true, "editor.renderWhitespace": "all", "editor.rulers": [79], "files.exclude":{ "**/.git": true, "**/.DS_Store": true, "**/__pycache__": true, "**/.pytest_cache": true, "**/*.egg-info": true, ".coverage": true, "cov.xml": true, "build": true, "dist": true, "venv": true, ".venv": true }, "files.watcherExclude": { "**/.git/**": true, "**/node_modules/*/**": true, "**/venv/**": true, "**/.venv/**": true }, "files.insertFinalNewline": true, "git.ignoreLimitWarning": true, "esbonio.sphinx.confDir": "${workspaceFolder}/docs/source", }