From 6241da83070cbc4b1882b5e5cfd5d5d2d81ca1ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Wieczorek?= Date: Sat, 6 Mar 2021 13:12:01 +0100 Subject: [PATCH] Update .gitignore. --- .gitignore | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 72 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index daded05..2f1606c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -# ---> Python +### Python .gitignore ### + # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -21,7 +22,6 @@ parts/ sdist/ var/ wheels/ -pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg @@ -51,6 +51,7 @@ coverage.xml *.py,cover .hypothesis/ .pytest_cache/ +cover/ # Translations *.mo @@ -73,6 +74,7 @@ instance/ docs/_build/ # PyBuilder +.pybuilder/ target/ # Jupyter Notebook @@ -83,7 +85,9 @@ profile_default/ ipython_config.py # pyenv -.python-version +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. @@ -129,7 +133,71 @@ dmypy.json # Pyre type checker .pyre/ -# ---> C++ +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + + +### Qt .gitignore ### +# C++ objects and libs +*.slo +*.lo +*.o +*.a +*.la +*.lai +*.so +*.so.* +*.dll +*.dylib + +# Qt-es +object_script.*.Release +object_script.*.Debug +*_plugin_import.cpp +/.qmake.cache +/.qmake.stash +*.pro.user +*.pro.user.* +*.qbs.user +*.qbs.user.* +*.moc +moc_*.cpp +moc_*.h +qrc_*.cpp +ui_*.h +*.qmlc +*.jsc +Makefile* +*build-* +*.qm +*.prl + +# Qt unit tests +target_wrapper.* + +# QtCreator +*.autosave + +# QtCreator Qml +*.qmlproject.user +*.qmlproject.user.* + +# QtCreator CMake +CMakeLists.txt.user* + +# QtCreator 4.8< compilation database +compile_commands.json + +# QtCreator local machine specific files for imported projects +*creator.user* + +*_qmlcache.qrc + + +### C++ .gitignore ### # Prerequisites *.d @@ -162,4 +230,3 @@ dmypy.json *.exe *.out *.app -