From e970e56c9f2fa22f14d608686b3db18d31587b09 Mon Sep 17 00:00:00 2001 From: kitsuyui Date: Tue, 23 Oct 2018 22:25:12 +0900 Subject: [PATCH] Add .pyre directory for Pyre type checker Pyre is a new type-checker for Python developed by facebook in May 2018. https://pyre-check.org/ It makes .pyre directory for storing result or cache for type checking. This directory is environment dependent. So it should be ignored from Git. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 6f7a6d9c..510c73d0 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -109,3 +109,6 @@ venv.bak/ .mypy_cache/ .dmypy.json dmypy.json + +# Pyre type checker +.pyre/