From ef385730c050b85bbad62e8f0c4db6de13c6b52a Mon Sep 17 00:00:00 2001 From: Avasam Date: Wed, 23 Oct 2024 18:10:57 -0400 Subject: [PATCH] even more pyright config removals ! --- pyrightconfig.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pyrightconfig.json b/pyrightconfig.json index 5a56ef6cf..49cdb75ea 100644 --- a/pyrightconfig.json +++ b/pyrightconfig.json @@ -38,8 +38,6 @@ "reportOptionalIterable": "warning", "reportOptionalMemberAccess": "warning", "reportOptionalSubscript": "warning", - // Needs fixes in types-pywin32 and requires Python 3.8 to annotate ambiguous global variables - "reportUnnecessaryComparison": "warning", // TODO: Leave Unbound its own PR(s) "reportUnboundVariable": "warning", // Too many dynamically generated modules. This will require type stubs to properly fix. @@ -49,8 +47,8 @@ // Since we're a library, and not user code, we care less about forgetting to install a dependency, // as long as we have its stubs. So just disabling for now is fine. "reportMissingModuleSource": "none", - // External type stubs may not be completable, and this will require type stubs for dynamic modules. + // External type stubs may not be completable "reportMissingTypeStubs": "information", - // Use Flake8/Pycln/Ruff instead + // Use Pycln/Ruff instead "reportUnusedImport": "none", }