From 4dd70d0d367a543a098bd7736518cf8dca50fb6b Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Thu, 24 Sep 2020 10:08:37 -0400 Subject: [PATCH] .gitignore: simplify This patch removes lines from the root `.gitignore` file which were useless for the barectf project. Signed-off-by: Philippe Proulx --- .gitignore | 64 +++++++++--------------------------------------------- 1 file changed, 10 insertions(+), 54 deletions(-) diff --git a/.gitignore b/.gitignore index 29f7ba1..8f0df5e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,63 +1,19 @@ -# Byte-compiled / optimized / DLL files +# cache __pycache__/ *.py[cod] +.*cache/ +.tox/ -# C extensions -*.so - -# C objects +# C objects and libraries *.o +*.a +*.so +*.so.* -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ +# distribution/build +/build/ +/dist/ *.egg-info/ -.installed.cfg -*.egg - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.cache -nosetests.xml -coverage.xml - -# Translations -*.mo -*.pot - -# Django stuff: -*.log - -# PyBuilder -target/ - -# Virtual environment -virt/ - -# pytest -.pytest_cache/ # generated HTML README README.html -- 2.34.1