diff options
author | Daniel Schadt <kingdread@gmx.de> | 2022-12-09 20:41:37 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2022-12-09 20:41:37 +0100 |
commit | f919c404ba11886395c4669734cf11a68af4d904 (patch) | |
tree | 7cd3c7ae9c4051d5e7d946684a89c3e2d775559d /.mypy.ini | |
parent | 2fae8e0d39f436976d90cfb94ac31a1a4427771d (diff) | |
parent | 36e28240e810e162ebb46bede1e6eab4f5fe4a3a (diff) | |
download | fietsboek-f919c404ba11886395c4669734cf11a68af4d904.tar.gz fietsboek-f919c404ba11886395c4669734cf11a68af4d904.tar.bz2 fietsboek-f919c404ba11886395c4669734cf11a68af4d904.zip |
Merge branch 'type-hints'
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 |