From 9daad5c60c1b83b495c0280451a7fa43055fe413 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Thu, 7 May 2020 00:20:37 +0200 Subject: [PATCH] Ignore .mypy_cache and add mypy configuration to setup.cfg --- .gitignore | 3 +++ setup.cfg | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index ed7b532f..2db46b82 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,6 @@ env3?/ # VSCode project settings /.vscode + +# MyPy cache +.mypy_cache/ diff --git a/setup.cfg b/setup.cfg index c5d51ac7..e01a4e25 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,3 +11,7 @@ exclude = env??/, .venv/, site/ + +[mypy] +files=cibuildwheel/ +strict=True