diff options
Diffstat (limited to '.mypy.ini')
-rw-r--r-- | .mypy.ini | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.mypy.ini b/.mypy.ini new file mode 100644 index 0000000..ed220e3 --- /dev/null +++ b/.mypy.ini @@ -0,0 +1,17 @@ +[mypy] +follow_imports = silent +check_untyped_defs = True +allow_redefinition = True +exclude = fietsboek/updater/scripts/.+\.py + +[mypy-pyramid.*] +ignore_missing_imports = True + +[mypy-sqlalchemy.*] +ignore_missing_imports = True + +[mypy-webob.*] +ignore_missing_imports = True + +[mypy-zope.*] +ignore_missing_imports = True |