From 3f00493b31861395c094f452eb879052de8c1e92 Mon Sep 17 00:00:00 2001 From: herr kaste Date: Sun, 17 Jul 2022 21:57:21 +0200 Subject: [PATCH] Add standard mypy configuration --- mypy.ini | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 mypy.ini diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..3b75d0f --- /dev/null +++ b/mypy.ini @@ -0,0 +1,17 @@ +[mypy] +check_untyped_defs = True +warn_redundant_casts = True +warn_unused_ignores = True +mypy_path = + :$MYPY_CONFIG_FILE_DIR/../ + :$MYPY_CONFIG_FILE_DIR/../SublimeLinter/stubs +sqlite_cache = True + +[mypy-Default] +ignore_missing_imports = True + +[mypy-unittesting] +ignore_missing_imports = True + +[mypy-package_control] +ignore_missing_imports = True