From 7cb038166a7b98b51396c4f6d97760c6e0e596dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=A1o=20Belica?= Date: Sat, 31 Mar 2018 11:15:13 +0200 Subject: [PATCH] Ignore files starting with dot (hidden files anyway) --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d1e5761..6d49249 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,10 @@ *.py[co] *.prof -.coverage + +# hide all files starting with dot: .idea, .pytest_cache, .coverage, ... +.* +!.gitignore +!.travis.yml .installed.cfg bin