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:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user