Update exclusion patterns in pyrightconfig.json to include virtual environments

This commit is contained in:
Slipstreamm 2025-06-13 00:12:37 -06:00
parent 8a228a9e1b
commit 6fb371455b

View File

@ -1,6 +1,6 @@
{
"include": ["."],
"exclude": ["**/node_modules", "**/__pycache__", "**/.venv", "**/.git", "**/dist", "**/build", "**/tests/**", "tavilytool.py"],
"exclude": ["**/node_modules", "**/__pycache__", "**/.venv", "**/venv", "**/.git", "**/dist", "**/build", "**/tests/**", "tavilytool.py"],
"ignore": [],
"reportMissingImports": true,
"reportMissingTypeStubs": false,