Skip to content

Commit

Permalink
chore: enable mypy final rules (georgezhao2010#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelli74 committed Jun 1, 2024
1 parent 27a5047 commit 3f904b3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[mypy]
python_version = 3.11
show_error_codes = true
follow_imports = silent
ignore_missing_imports = true
strict_equality = true
warn_incomplete_stub = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_return_any = true
warn_unreachable = true

0 comments on commit 3f904b3

Please sign in to comment.