You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. # ---> Qt
  2. # C++ objects and libs
  3. *.slo
  4. *.lo
  5. *.o
  6. *.a
  7. *.la
  8. *.lai
  9. *.so
  10. *.dll
  11. *.dylib
  12. # Qt-es
  13. object_script.*.Release
  14. object_script.*.Debug
  15. *_plugin_import.cpp
  16. /.qmake.cache
  17. /.qmake.stash
  18. *.pro.user
  19. *.pro.user.*
  20. *.qbs.user
  21. *.qbs.user.*
  22. *.moc
  23. moc_*.cpp
  24. moc_*.h
  25. qrc_*.cpp
  26. ui_*.h
  27. *.qmlc
  28. *.jsc
  29. Makefile*
  30. *build-*
  31. # Qt unit tests
  32. target_wrapper.*
  33. # QtCreator
  34. *.autosave
  35. # QtCreator Qml
  36. *.qmlproject.user
  37. *.qmlproject.user.*
  38. # QtCreator CMake
  39. CMakeLists.txt.user*
  40. # ---> C++
  41. # Prerequisites
  42. *.d
  43. # Compiled Object files
  44. *.slo
  45. *.lo
  46. *.o
  47. *.obj
  48. # Precompiled Headers
  49. *.gch
  50. *.pch
  51. # Compiled Dynamic libraries
  52. *.so
  53. *.dylib
  54. *.dll
  55. # Fortran module files
  56. *.mod
  57. *.smod
  58. # Compiled Static libraries
  59. *.lai
  60. *.la
  61. *.a
  62. *.lib
  63. # Executables
  64. *.exe
  65. *.out
  66. *.app
  67. # ---> C
  68. # Prerequisites
  69. *.d
  70. # Object files
  71. *.o
  72. *.ko
  73. *.obj
  74. *.elf
  75. # Linker output
  76. *.ilk
  77. *.map
  78. *.exp
  79. # Precompiled Headers
  80. *.gch
  81. *.pch
  82. # Libraries
  83. *.lib
  84. *.a
  85. *.la
  86. *.lo
  87. # Shared objects (inc. Windows DLLs)
  88. *.dll
  89. *.so
  90. *.so.*
  91. *.dylib
  92. # Executables
  93. *.exe
  94. *.out
  95. *.app
  96. *.i*86
  97. *.x86_64
  98. *.hex
  99. # Debug files
  100. *.dSYM/
  101. *.su
  102. *.idb
  103. *.pdb
  104. # Kernel Module Compile Results
  105. *.mod*
  106. *.cmd
  107. .tmp_versions/
  108. modules.order
  109. Module.symvers
  110. Mkfile.old
  111. dkms.conf
  112. # ---> Python
  113. # Byte-compiled / optimized / DLL files
  114. __pycache__/
  115. *.py[cod]
  116. *$py.class
  117. # C extensions
  118. *.so
  119. # Distribution / packaging
  120. .Python
  121. build/
  122. develop-eggs/
  123. dist/
  124. downloads/
  125. eggs/
  126. .eggs/
  127. lib/
  128. lib64/
  129. parts/
  130. sdist/
  131. var/
  132. wheels/
  133. *.egg-info/
  134. .installed.cfg
  135. *.egg
  136. MANIFEST
  137. # PyInstaller
  138. # Usually these files are written by a python script from a template
  139. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  140. *.manifest
  141. *.spec
  142. # Installer logs
  143. pip-log.txt
  144. pip-delete-this-directory.txt
  145. # Unit test / coverage reports
  146. htmlcov/
  147. .tox/
  148. .nox/
  149. .coverage
  150. .coverage.*
  151. .cache
  152. nosetests.xml
  153. coverage.xml
  154. *.cover
  155. .hypothesis/
  156. .pytest_cache/
  157. # Translations
  158. *.mo
  159. *.pot
  160. # Django stuff:
  161. *.log
  162. local_settings.py
  163. db.sqlite3
  164. # Flask stuff:
  165. instance/
  166. .webassets-cache
  167. # Scrapy stuff:
  168. .scrapy
  169. # Sphinx documentation
  170. docs/_build/
  171. # PyBuilder
  172. target/
  173. # Jupyter Notebook
  174. .ipynb_checkpoints
  175. # IPython
  176. profile_default/
  177. ipython_config.py
  178. # pyenv
  179. .python-version
  180. # celery beat schedule file
  181. celerybeat-schedule
  182. # SageMath parsed files
  183. *.sage.py
  184. # Environments
  185. .env
  186. .venv
  187. env/
  188. venv/
  189. ENV/
  190. env.bak/
  191. venv.bak/
  192. # Spyder project settings
  193. .spyderproject
  194. .spyproject
  195. # Rope project settings
  196. .ropeproject
  197. # mkdocs documentation
  198. /site
  199. # mypy
  200. .mypy_cache/
  201. .dmypy.json
  202. dmypy.json
  203. # Pyre type checker
  204. .pyre/