diff options
| author | Yobmod <yobmod@gmail.com> | 2021-07-08 11:30:16 +0100 |
|---|---|---|
| committer | Yobmod <yobmod@gmail.com> | 2021-07-08 11:30:16 +0100 |
| commit | 2e2fe186d09272c3cb6c96467fff362deb90994f (patch) | |
| tree | b2ffef306dd111d633e1b3fa66464eda09c5f903 /mypy.ini | |
| parent | 873ebe61431c50bb39afd5cafff498b3e1879342 (diff) | |
| download | gitpython-2e2fe186d09272c3cb6c96467fff362deb90994f.tar.gz | |
Increase mypy strictness (no_implicit_optional & warn_redundant_casts) and fix errors
Diffstat (limited to 'mypy.ini')
| -rw-r--r-- | mypy.ini | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -3,6 +3,11 @@ # TODO: enable when we've fully annotated everything # disallow_untyped_defs = True +no_implicit_optional = True +warn_redundant_casts = True +# warn_unused_ignores = True +# warn_unreachable = True +pretty = True # TODO: remove when 'gitdb' is fully annotated [mypy-gitdb.*] |
