From 9cd1dab32aba2c5806d063dfbf8a7737806ff4c2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristoffer=20Gr=C3=B6nlund?= Date: Mon, 24 Feb 2020 14:04:29 +0100 Subject: [PATCH] .gitignore: Add .mypy-cache to .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Ignore the mypy cache directory. Signed-off-by: Kristoffer Grönlund --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 149ec0f2499..985b348442b 100644 --- a/.gitignore +++ b/.gitignore @@ -75,3 +75,7 @@ GTAGS /src/pybind/mgr/dashboard/frontend/src/environments/environment.ts /src/pybind/mgr/dashboard/frontend/src/environments/environment.prod.ts /src/pybind/mgr/dashboard/frontend/src/locale/messages.xlf + +# mypy cache +.mypy_cache/ + -- 2.39.5