From 3c8ac842d27b03840cca91d45b8809ae7f8a70c3 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Tue, 10 Feb 2026 20:14:40 +0100 Subject: [PATCH] disable unknown type warnings --- pyrightconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pyrightconfig.json diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 0000000..ff66fd0 --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,6 @@ +{ + "reportUnknownMemberType": false, + "reportUnknownArgumentType": false, + "reportUnknownVariableType": false, + "reportAny": false, +}