From 2f69f496907c7a7d54e4df355f9c1faed83e64b6 Mon Sep 17 00:00:00 2001 From: brb Date: Thu, 13 Jul 2023 12:11:43 +0200 Subject: [PATCH] added mypy config --- mypy.ini | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mypy.ini diff --git a/mypy.ini b/mypy.ini new file mode 100644 index 0000000..faf1c78 --- /dev/null +++ b/mypy.ini @@ -0,0 +1,13 @@ +[mypy] + +[mypy-uvicorn.*] +ignore_missing_imports = True + +[mypy-dotenv.*] +ignore_missing_imports = True + +[mypy-git.*] +ignore_missing_imports = True + +[mypy-fastapi.*] +ignore_missing_imports = True \ No newline at end of file