.gitignore 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### JetBrains template
  3. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  4. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  5. # User-specific stuff:
  6. .idea/**/workspace.xml
  7. .idea/**/tasks.xml
  8. .idea/dictionaries
  9. # Sensitive or high-churn files:
  10. .idea/**/dataSources/
  11. .idea/**/dataSources.ids
  12. .idea/**/dataSources.xml
  13. .idea/**/dataSources.local.xml
  14. .idea/**/sqlDataSources.xml
  15. .idea/**/dynamic.xml
  16. .idea/**/uiDesigner.xml
  17. # Gradle:
  18. .idea/**/gradle.xml
  19. .idea/**/libraries
  20. # Mongo Explorer plugin:
  21. .idea/**/mongoSettings.xml
  22. ## File-based project format:
  23. *.iws
  24. ## Plugin-specific files:
  25. # IntelliJ
  26. /out/
  27. # mpeltonen/sbt-idea plugin
  28. .idea_modules/
  29. # JIRA plugin
  30. atlassian-ide-plugin.xml
  31. # Crashlytics plugin (for Android Studio and IntelliJ)
  32. com_crashlytics_export_strings.xml
  33. crashlytics.properties
  34. crashlytics-build.properties
  35. fabric.properties
  36. ### VirtualEnv template
  37. # Virtualenv
  38. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  39. .Python
  40. [Bb]in
  41. [Ii]nclude
  42. [Ll]ib
  43. [Ll]ib64
  44. [Ll]ocal
  45. [Ss]cripts
  46. pyvenv.cfg
  47. .venv
  48. pip-selfcheck.json
  49. ### Python template
  50. # Byte-compiled / optimized / DLL files
  51. __pycache__/
  52. *.py[cod]
  53. *$py.class
  54. # C extensions
  55. *.so
  56. # Distribution / packaging
  57. .Python
  58. env/
  59. build/
  60. develop-eggs/
  61. dist/
  62. downloads/
  63. eggs/
  64. .eggs/
  65. lib/
  66. lib64/
  67. parts/
  68. sdist/
  69. var/
  70. wheels/
  71. *.egg-info/
  72. .installed.cfg
  73. *.egg
  74. # PyInstaller
  75. # Usually these files are written by a python script from a template
  76. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  77. *.manifest
  78. *.spec
  79. # Installer logs
  80. pip-log.txt
  81. pip-delete-this-directory.txt
  82. # Unit test / coverage reports
  83. htmlcov/
  84. .tox/
  85. .coverage
  86. .coverage.*
  87. .cache
  88. nosetests.xml
  89. coverage.xml
  90. *,cover
  91. .hypothesis/
  92. # Translations
  93. *.mo
  94. *.pot
  95. # Django stuff:
  96. *.log
  97. local_settings.py
  98. # Flask stuff:
  99. instance/
  100. .webassets-cache
  101. # Scrapy stuff:
  102. .scrapy
  103. # Sphinx documentation
  104. docs/_build/
  105. # PyBuilder
  106. target/
  107. # Jupyter Notebook
  108. .ipynb_checkpoints
  109. # pyenv
  110. .python-version
  111. # celery beat schedule file
  112. celerybeat-schedule
  113. # SageMath parsed files
  114. *.sage.py
  115. # dotenv
  116. .env
  117. # virtualenv
  118. .venv
  119. venv/
  120. ENV/
  121. # Spyder project settings
  122. .spyderproject
  123. # Rope project settings
  124. .ropeproject
  125. bloom-filter-rm-me