.gitignore 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### Python template
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. env/
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *,cover
  43. .hypothesis/
  44. # Translations
  45. *.mo
  46. *.pot
  47. # Django stuff:
  48. *.log
  49. local_settings.py
  50. # Flask stuff:
  51. instance/
  52. .webassets-cache
  53. # Scrapy stuff:
  54. .scrapy
  55. # Sphinx documentation
  56. docs/_build/
  57. # PyBuilder
  58. target/
  59. # IPython Notebook
  60. .ipynb_checkpoints
  61. # pyenv
  62. .python-version
  63. # celery beat schedule file
  64. celerybeat-schedule
  65. # dotenv
  66. .env
  67. # virtualenv
  68. venv/
  69. ENV/
  70. # Spyder project settings
  71. .spyderproject
  72. # Rope project settings
  73. .ropeproject
  74. ### VirtualEnv template
  75. # Virtualenv
  76. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  77. [Bb]in
  78. [Ii]nclude
  79. [Ll]ib
  80. [Ll]ib64
  81. [Ll]ocal
  82. [Ss]cripts
  83. pyvenv.cfg
  84. .venv
  85. pip-selfcheck.json
  86. ### JetBrains template
  87. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  88. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  89. # User-specific stuff
  90. .idea/**/workspace.xml
  91. .idea/**/tasks.xml
  92. .idea/**/usage.statistics.xml
  93. .idea/**/dictionaries
  94. .idea/**/shelf
  95. # AWS User-specific
  96. .idea/**/aws.xml
  97. # Generated files
  98. .idea/**/contentModel.xml
  99. # Sensitive or high-churn files
  100. .idea/**/dataSources/
  101. .idea/**/dataSources.ids
  102. .idea/**/dataSources.local.xml
  103. .idea/**/sqlDataSources.xml
  104. .idea/**/dynamic.xml
  105. .idea/**/uiDesigner.xml
  106. .idea/**/dbnavigator.xml
  107. # Gradle
  108. .idea/**/gradle.xml
  109. .idea/**/libraries
  110. # Gradle and Maven with auto-import
  111. # When using Gradle or Maven with auto-import, you should exclude module files,
  112. # since they will be recreated, and may cause churn. Uncomment if using
  113. # auto-import.
  114. # .idea/artifacts
  115. # .idea/compiler.xml
  116. # .idea/jarRepositories.xml
  117. # .idea/modules.xml
  118. # .idea/*.iml
  119. # .idea/modules
  120. # *.iml
  121. # *.ipr
  122. # CMake
  123. cmake-build-*/
  124. # Mongo Explorer plugin
  125. .idea/**/mongoSettings.xml
  126. # File-based project format
  127. *.iws
  128. # IntelliJ
  129. out/
  130. # mpeltonen/sbt-idea plugin
  131. .idea_modules/
  132. # JIRA plugin
  133. atlassian-ide-plugin.xml
  134. # Cursive Clojure plugin
  135. .idea/replstate.xml
  136. # SonarLint plugin
  137. .idea/sonarlint/
  138. # Crashlytics plugin (for Android Studio and IntelliJ)
  139. com_crashlytics_export_strings.xml
  140. crashlytics.properties
  141. crashlytics-build.properties
  142. fabric.properties
  143. # Editor-based Rest Client
  144. .idea/httpRequests
  145. # Android studio 3.1+ serialized cache file
  146. .idea/caches/build_file_checksums.ser
  147. # idea folder, uncomment if you don't need it
  148. .idea
  149. *.sql
  150. sql.py