From a1c2a999e449054d6641bbb633954e45fcd63f90 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Mon, 25 Jan 2021 01:14:28 +0100 Subject: Add plugins and importers from private config The importers are missing tests, because not having any specifications for the import formats means we must use real, private data as test inputs --- mypy.ini | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 mypy.ini (limited to 'mypy.ini') diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..a98d7fb --- /dev/null +++ b/mypy.ini @@ -0,0 +1,14 @@ +[mypy] +check_untyped_defs = True +ignore_errors = False +ignore_missing_imports = True +strict_optional = True +warn_unused_ignores = True +warn_redundant_casts = True +warn_unused_configs = True + +[mypy-beancount.*] +ignore_missing_imports = True + +[mypy-pdfminer.*] +ignore_missing_imports = True -- cgit v1.2.3-54-g00ecf