From 07a1dd6b99fa52b43811fa1447ecc83cb1a4bee4 Mon Sep 17 00:00:00 2001 From: Gabriel Curio Date: Sat, 18 Aug 2018 12:08:55 -0500 Subject: [PATCH 1/3] add .dmypy.json to Python.gitignore. MyPy includes a daemon server that creates a file named .dmypy.json to manage socket connection data. --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 894a44cc..8cd91f3c 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -102,3 +102,4 @@ venv.bak/ # mypy .mypy_cache/ +.dmypy.json From eb4ff424fdcc78b4f431745aa1417a0d265e301f Mon Sep 17 00:00:00 2001 From: Gabriel Curio Date: Sat, 18 Aug 2018 12:21:30 -0500 Subject: [PATCH 2/3] add dmypy.json - without initial '.', to Python.gitignore. Older versions of dmypy used 'dmypy.json' without the initial '.'. This should be added to Python.gitignore for those using older versions of MyPy. --- Python.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 8cd91f3c..87b0d983 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -103,3 +103,5 @@ venv.bak/ # mypy .mypy_cache/ .dmypy.json +dmypy.json + From 7bc8780913997b713469898b31b247acc69e26c4 Mon Sep 17 00:00:00 2001 From: Gabriel Curio Date: Sat, 18 Aug 2018 12:25:43 -0500 Subject: [PATCH 3/3] Remove newline at end of Python.gitignore. My preference is for files to have a terminal newline, however that doesn't seem to be how this repo is doing things. --- Python.gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index 87b0d983..ce9487fc 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -104,4 +104,3 @@ venv.bak/ .mypy_cache/ .dmypy.json dmypy.json -