Skip to content

Commit

Permalink
even more pyright config removals !
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Oct 23, 2024
1 parent be1e825 commit ef38573
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pyrightconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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",
}

0 comments on commit ef38573

Please sign in to comment.