diff options
author | mathieui <mathieui@mathieui.net> | 2021-07-05 22:42:28 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-07-05 22:42:28 +0200 |
commit | de6c19c9cd6e5ec7e5215db643bb974fc0c1e1b8 (patch) | |
tree | d86b249deec1ca8223047d05fbf4ebfa4f7758db | |
parent | ca1cc73c79e1adc3653cb4452c4f1eee9b58365a (diff) | |
download | slixmpp-de6c19c9cd6e5ec7e5215db643bb974fc0c1e1b8.tar.gz slixmpp-de6c19c9cd6e5ec7e5215db643bb974fc0c1e1b8.tar.bz2 slixmpp-de6c19c9cd6e5ec7e5215db643bb974fc0c1e1b8.tar.xz slixmpp-de6c19c9cd6e5ec7e5215db643bb974fc0c1e1b8.zip |
add a mypy.ini file
-rw-r--r-- | mypy.ini | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 00000000..edf0d65f --- /dev/null +++ b/mypy.ini @@ -0,0 +1,15 @@ +[mypy] +check_untyped_defs = False +ignore_missing_imports = True + +[mypy-slixmpp.types] +ignore_errors = True + +[mypy-slixmpp.thirdparty.*] +ignore_errors = True + +[mypy-slixmpp.plugins.*] +ignore_errors = True + +[mypy-slixmpp.plugins.base] +ignore_errors = False |