From 4884514d1075db40d4f730690020ea094cfa80ce Mon Sep 17 00:00:00 2001 From: mccakit Date: Wed, 4 Feb 2026 14:31:09 +0300 Subject: [PATCH] disabled pyright settings so that the project doesn't have error by default. --- pyrightconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pyrightconfig.json diff --git a/pyrightconfig.json b/pyrightconfig.json new file mode 100644 index 000000000000..dd23f893a677 --- /dev/null +++ b/pyrightconfig.json @@ -0,0 +1,13 @@ +{ + "reportOptionalMemberAccess": false, + "reportArgumentType": false, + "reportUninitializedInstanceVariable": false, + "reportReturnType": false, + "reportMissingTypeArgument": false, + "reportAttributeAccessIssue": false, + "reportAssignmentType": false, + "reportOperatorIssue": false, + "reportPossiblyUnboundVariable": false, + "reportOptionalOperand": false, + "reportCallIssue": false, +}