.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. [Ii]nclude
  41. [Ll]ib64
  42. [Ll]ocal
  43. [Ss]cripts
  44. pyvenv.cfg
  45. .venv
  46. pip-selfcheck.json
  47. ### Python template
  48. # Byte-compiled / optimized / DLL files
  49. __pycache__/
  50. *.py[cod]
  51. *$py.class
  52. # C extensions
  53. *.so
  54. # Distribution / packaging
  55. .Python
  56. env/
  57. build/
  58. develop-eggs/
  59. dist/
  60. downloads/
  61. eggs/
  62. .eggs/
  63. lib/
  64. lib64/
  65. parts/
  66. sdist/
  67. var/
  68. wheels/
  69. *.egg-info/
  70. .installed.cfg
  71. *.egg
  72. # PyInstaller
  73. # Usually these files are written by a python script from a template
  74. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  75. *.manifest
  76. *.spec
  77. # Installer logs
  78. pip-log.txt
  79. pip-delete-this-directory.txt
  80. # Unit test / coverage reports
  81. htmlcov/
  82. .tox/
  83. .coverage
  84. .coverage.*
  85. .cache
  86. nosetests.xml
  87. coverage.xml
  88. *,cover
  89. .hypothesis/
  90. # Translations
  91. *.mo
  92. *.pot
  93. # Django stuff:
  94. *.log
  95. local_settings.py
  96. # Flask stuff:
  97. instance/
  98. .webassets-cache
  99. # Scrapy stuff:
  100. .scrapy
  101. # Sphinx documentation
  102. docs/_build/
  103. # PyBuilder
  104. target/
  105. # Jupyter Notebook
  106. .ipynb_checkpoints
  107. # pyenv
  108. .python-version
  109. # celery beat schedule file
  110. celerybeat-schedule
  111. # SageMath parsed files
  112. *.sage.py
  113. # dotenv
  114. .env
  115. # virtualenv
  116. .venv
  117. venv/
  118. ENV/
  119. # Spyder project settings
  120. .spyderproject
  121. # Rope project settings
  122. .ropeproject
  123. bloom-filter-rm-me