Silence pyright diagnostics for unchecked modules in IDE

Pylance analyzes open files even when they're outside the `include`
set, producing noise in the editor. Adding these paths to `ignore`
suppresses diagnostics without affecting import resolution.
This commit is contained in:
Mark Backman
2026-04-19 09:19:15 -04:00
parent 6d3dfd8f64
commit 74d11dc0aa

View File

@@ -17,5 +17,20 @@
"**/*_pb2.py",
"**/__pycache__"
],
"ignore": [
"src/pipecat/adapters",
"src/pipecat/audio",
"src/pipecat/processors",
"src/pipecat/serializers",
"src/pipecat/services",
"src/pipecat/sync",
"src/pipecat/tests",
"src/pipecat/transports",
"src/pipecat/utils",
"tests",
"examples",
"scripts",
"docs"
],
"reportMissingImports": false
}