From 1818bb18b528262c643261cca386c1695326584b Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Mon, 8 May 2017 12:24:32 -0700 Subject: [PATCH] Ignore .mypy_cache A recent mypy update started writing the .mypy_cache directory which we don't want under version control. The cache is only used by the experimental "mypy --incremental" mode which we don't use, but it is always written anyway. --- cranelift/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/cranelift/.gitignore b/cranelift/.gitignore index 5f3b8f2899..a230556d47 100644 --- a/cranelift/.gitignore +++ b/cranelift/.gitignore @@ -7,3 +7,4 @@ target Cargo.lock .*.rustfmt cretonne.dbg* +.mypy_cache