From 5f7b868725fcea817967820d35a4e0ebb02b3756 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Mon, 28 May 2018 16:32:54 +0300 Subject: [PATCH] Ignore .*cache, to ignore .pytest_cache --- .gitignore | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index e15875ba..50e5838f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,22 @@ -*~ -*.swp -.idea -*.so -docs/_build +**/__pycache__ +*.egg +*.egg-info *.pyc *.pyo -*.egg-info -*.egg -build -dist +*.so +*.swp +*~ +.*cache .DS_Store +.idea .tox -.cache -test-env -**/__pycache__ +/venv* babel/global.dat babel/global.dat.json -tests/messages/data/project/i18n/long_messages.pot -tests/messages/data/project/i18n/temp* +build +dist +docs/_build +test-env tests/messages/data/project/i18n/en_US -/venv* \ No newline at end of file +tests/messages/data/project/i18n/long_messages.pot +tests/messages/data/project/i18n/temp* \ No newline at end of file -- 2.47.2