Skip to content

Commit

Permalink
F Add some more mypy rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ymilki committed Sep 10, 2022
1 parent a20634b commit f2c8ebd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,12 @@
[mypy]
python_version = 3.7
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_calls = True
disallow_untyped_decorators = True
disallow_subclassing_any = True
disallow_any_generics = True
warn_unused_ignores = True
warn_unreachable = True
show_error_context = True
show_column_numbers = True

0 comments on commit f2c8ebd

Please sign in to comment.