.gitignore 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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
  73. .idea/workspace.xml
  74. .idea/misc.xml
  75. .idea/pyqt.iml
  76. .idea/**/tasks.xml
  77. .idea/**/usage.statistics.xml
  78. .idea/**/dictionaries
  79. .idea/**/shelf
  80. .idea/codeStyles
  81. # Generated files
  82. .idea/**/contentModel.xml
  83. # Sensitive or high-churn files
  84. .idea/**/dataSources/
  85. .idea/**/dataSources.ids
  86. .idea/**/dataSources.local.xml
  87. .idea/**/sqlDataSources.xml
  88. .idea/**/dynamic.xml
  89. .idea/**/uiDesigner.xml
  90. .idea/**/dbnavigator.xml
  91. # Gradle
  92. .idea/**/gradle.xml
  93. .idea/**/libraries
  94. # Gradle and Maven with auto-import
  95. # When using Gradle or Maven with auto-import, you should exclude module files,
  96. # since they will be recreated, and may cause churn. Uncomment if using
  97. # auto-import.
  98. # .idea/modules.xml
  99. # .idea/*.iml
  100. # .idea/modules
  101. # *.iml
  102. # *.ipr
  103. # CMake
  104. cmake-build-*/
  105. # Mongo Explorer plugin
  106. .idea/**/mongoSettings.xml
  107. # File-based project format
  108. *.iws
  109. # IntelliJ
  110. out/
  111. # mpeltonen/sbt-idea plugin
  112. .idea_modules/
  113. # JIRA plugin
  114. atlassian-ide-plugin.xml
  115. # Cursive Clojure plugin
  116. .idea/replstate.xml
  117. # Crashlytics plugin (for Android Studio and IntelliJ)
  118. com_crashlytics_export_strings.xml
  119. crashlytics.properties
  120. crashlytics-build.properties
  121. fabric.properties
  122. # Editor-based Rest Client
  123. .idea/httpRequests
  124. # Android studio 3.1+ serialized cache file
  125. .idea/caches/build_file_checksums.ser
  126. ### Python template
  127. # Byte-compiled / optimized / DLL files
  128. __pycache__/
  129. *.py[cod]
  130. *$py.class
  131. # C extensions
  132. *.so
  133. # Distribution / packaging
  134. .Python
  135. build/
  136. develop-eggs/
  137. dist/
  138. downloads/
  139. eggs/
  140. .eggs/
  141. lib/
  142. lib64/
  143. parts/
  144. sdist/
  145. var/
  146. wheels/
  147. pip-wheel-metadata/
  148. share/python-wheels/
  149. *.egg-info/
  150. .installed.cfg
  151. *.egg
  152. MANIFEST
  153. # PyInstaller
  154. # Usually these files are written by a python script from a template
  155. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  156. *.manifest
  157. *.spec
  158. # Installer logs
  159. pip-log.txt
  160. pip-delete-this-directory.txt
  161. # Unit test / coverage reports
  162. htmlcov/
  163. .tox/
  164. .nox/
  165. .coverage
  166. .coverage.*
  167. .cache
  168. nosetests.xml
  169. coverage.xml
  170. *.cover
  171. .hypothesis/
  172. .pytest_cache/
  173. # Translations
  174. *.mo
  175. *.pot
  176. # Django stuff:
  177. *.log
  178. local_settings.py
  179. db.sqlite3
  180. db.sqlite3-journal
  181. # Flask stuff:
  182. instance/
  183. .webassets-cache
  184. # Scrapy stuff:
  185. .scrapy
  186. # Sphinx documentation
  187. docs/_build/
  188. # PyBuilder
  189. target/
  190. # Jupyter Notebook
  191. .ipynb_checkpoints
  192. # IPython
  193. profile_default/
  194. ipython_config.py
  195. # pyenv
  196. .python-version
  197. # pipenv
  198. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  199. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  200. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  201. # install all needed dependencies.
  202. #Pipfile.lock
  203. # celery beat schedule file
  204. celerybeat-schedule
  205. # SageMath parsed files
  206. *.sage.py
  207. # Environments
  208. .env
  209. .venv
  210. env/
  211. venv/
  212. ENV/
  213. env.bak/
  214. venv.bak/
  215. # Spyder project settings
  216. .spyderproject
  217. .spyproject
  218. # Rope project settings
  219. .ropeproject
  220. # mkdocs documentation
  221. /site
  222. # mypy
  223. .mypy_cache/
  224. .dmypy.json
  225. dmypy.json
  226. # Pyre type checker
  227. .pyre/