Skip to content

Commit

Permalink
Add stricter mypy settings
Browse files Browse the repository at this point in the history
Resolves #29
  • Loading branch information
CarrotManMatt committed Jan 31, 2025
1 parent f9b4b37 commit 5dac567
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 19 deletions.
13 changes: 13 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,19 @@ disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
enable_error_code = [
"deprecated",
"explicit-override",
"ignore-without-code",
"mutable-override",
"narrowed-type-not-subtype",
"possibly-undefined",
"redundant-expr",
"redundant-self",
"truthy-bool",
"truthy-iterable",
"unused-awaitable",
]
extra_checks = true
no_implicit_reexport = true
strict_equality = true
Expand Down
38 changes: 19 additions & 19 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5dac567

Please sign in to comment.