From 74d11dc0aa6219554b07d49192f02215a430e56e Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Sun, 19 Apr 2026 09:19:15 -0400 Subject: [PATCH] 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. --- pyrightconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pyrightconfig.json b/pyrightconfig.json index 17359ed4a..6dae89b0a 100644 --- a/pyrightconfig.json +++ b/pyrightconfig.json @@ -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 }