.gitignore 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### macOS template
  3. # General
  4. .DS_Store
  5. .AppleDouble
  6. .LSOverride
  7. # Icon must end with two \r
  8. Icon
  9. # Thumbnails
  10. ._*
  11. # Files that might appear in the root of a volume
  12. .DocumentRevisions-V100
  13. .fseventsd
  14. .Spotlight-V100
  15. .TemporaryItems
  16. .Trashes
  17. .VolumeIcon.icns
  18. .com.apple.timemachine.donotpresent
  19. # Directories potentially created on remote AFP share
  20. .AppleDB
  21. .AppleDesktop
  22. Network Trash Folder
  23. Temporary Items
  24. .apdisk
  25. ### Qt template
  26. # C++ objects and libs
  27. *.slo
  28. *.lo
  29. *.o
  30. *.a
  31. *.la
  32. *.lai
  33. *.so
  34. *.dll
  35. *.dylib
  36. # Qt-es
  37. object_script.*.Release
  38. object_script.*.Debug
  39. *_plugin_import.cpp
  40. /.qmake.cache
  41. /.qmake.stash
  42. *.pro.user
  43. *.pro.user.*
  44. *.qbs.user
  45. *.qbs.user.*
  46. *.moc
  47. moc_*.cpp
  48. moc_*.h
  49. qrc_*.cpp
  50. ui_*.h
  51. *.qmlc
  52. *.jsc
  53. Makefile*
  54. *build-*
  55. # Qt unit tests
  56. target_wrapper.*
  57. # QtCreator
  58. *.autosave
  59. # QtCreator Qml
  60. *.qmlproject.user
  61. *.qmlproject.user.*
  62. # QtCreator CMake
  63. CMakeLists.txt.user*
  64. # QtCreator 4.8< compilation database
  65. compile_commands.json
  66. # QtCreator local machine specific files for imported projects
  67. *creator.user*
  68. ### JetBrains template
  69. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  70. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  71. # User-specific stuff
  72. .idea/**/workspace.xml
  73. .idea/**/tasks.xml
  74. .idea/**/usage.statistics.xml
  75. .idea/**/dictionaries
  76. .idea/**/shelf
  77. # Generated files
  78. .idea/**/contentModel.xml
  79. # Sensitive or high-churn files
  80. .idea/**/dataSources/
  81. .idea/**/dataSources.ids
  82. .idea/**/dataSources.local.xml
  83. .idea/**/sqlDataSources.xml
  84. .idea/**/dynamic.xml
  85. .idea/**/uiDesigner.xml
  86. .idea/**/dbnavigator.xml
  87. # Gradle
  88. .idea/**/gradle.xml
  89. .idea/**/libraries
  90. # Gradle and Maven with auto-import
  91. # When using Gradle or Maven with auto-import, you should exclude module files,
  92. # since they will be recreated, and may cause churn. Uncomment if using
  93. # auto-import.
  94. # .idea/modules.xml
  95. # .idea/*.iml
  96. # .idea/modules
  97. # *.iml
  98. # *.ipr
  99. # CMake
  100. cmake-build-*/
  101. # Mongo Explorer plugin
  102. .idea/**/mongoSettings.xml
  103. # File-based project format
  104. *.iws
  105. # IntelliJ
  106. out/
  107. # mpeltonen/sbt-idea plugin
  108. .idea_modules/
  109. # JIRA plugin
  110. atlassian-ide-plugin.xml
  111. # Cursive Clojure plugin
  112. .idea/replstate.xml
  113. # Crashlytics plugin (for Android Studio and IntelliJ)
  114. com_crashlytics_export_strings.xml
  115. crashlytics.properties
  116. crashlytics-build.properties
  117. fabric.properties
  118. # Editor-based Rest Client
  119. .idea/httpRequests
  120. # Android studio 3.1+ serialized cache file
  121. .idea/caches/build_file_checksums.ser
  122. ### Python template
  123. # Byte-compiled / optimized / DLL files
  124. __pycache__/
  125. *.py[cod]
  126. *$py.class
  127. # C extensions
  128. *.so
  129. # Distribution / packaging
  130. .Python
  131. build/
  132. develop-eggs/
  133. dist/
  134. downloads/
  135. eggs/
  136. .eggs/
  137. lib/
  138. lib64/
  139. parts/
  140. sdist/
  141. var/
  142. wheels/
  143. pip-wheel-metadata/
  144. share/python-wheels/
  145. *.egg-info/
  146. .installed.cfg
  147. *.egg
  148. MANIFEST
  149. # PyInstaller
  150. # Usually these files are written by a python script from a template
  151. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  152. *.manifest
  153. *.spec
  154. # Installer logs
  155. pip-log.txt
  156. pip-delete-this-directory.txt
  157. # Unit test / coverage reports
  158. htmlcov/
  159. .tox/
  160. .nox/
  161. .coverage
  162. .coverage.*
  163. .cache
  164. nosetests.xml
  165. coverage.xml
  166. *.cover
  167. .hypothesis/
  168. .pytest_cache/
  169. # Translations
  170. *.mo
  171. *.pot
  172. # Django stuff:
  173. *.log
  174. local_settings.py
  175. db.sqlite3
  176. db.sqlite3-journal
  177. # Flask stuff:
  178. instance/
  179. .webassets-cache
  180. # Scrapy stuff:
  181. .scrapy
  182. # Sphinx documentation
  183. docs/_build/
  184. # PyBuilder
  185. target/
  186. # Jupyter Notebook
  187. .ipynb_checkpoints
  188. # IPython
  189. profile_default/
  190. ipython_config.py
  191. # pyenv
  192. .python-version
  193. # pipenv
  194. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  195. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  196. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  197. # install all needed dependencies.
  198. #Pipfile.lock
  199. # celery beat schedule file
  200. celerybeat-schedule
  201. # SageMath parsed files
  202. *.sage.py
  203. # Environments
  204. .env
  205. .venv
  206. env/
  207. venv/
  208. ENV/
  209. env.bak/
  210. venv.bak/
  211. # Spyder project settings
  212. .spyderproject
  213. .spyproject
  214. # Rope project settings
  215. .ropeproject
  216. # mkdocs documentation
  217. /site
  218. # mypy
  219. .mypy_cache/
  220. .dmypy.json
  221. dmypy.json
  222. # Pyre type checker
  223. .pyre/