.gitignore 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### Windows template
  3. # Windows thumbnail cache files
  4. Thumbs.db
  5. ehthumbs.db
  6. ehthumbs_vista.db
  7. # Dump file
  8. *.stackdump
  9. # Folder config file
  10. [Dd]esktop.ini
  11. # Recycle Bin used on file shares
  12. $RECYCLE.BIN/
  13. # Windows Installer files
  14. *.cab
  15. *.msi
  16. *.msix
  17. *.msm
  18. *.msp
  19. # Windows shortcuts
  20. *.lnk
  21. ### macOS template
  22. # General
  23. .DS_Store
  24. .AppleDouble
  25. .LSOverride
  26. # Icon must end with two \r
  27. Icon
  28. # Thumbnails
  29. ._*
  30. # Files that might appear in the root of a volume
  31. .DocumentRevisions-V100
  32. .fseventsd
  33. .Spotlight-V100
  34. .TemporaryItems
  35. .Trashes
  36. .VolumeIcon.icns
  37. .com.apple.timemachine.donotpresent
  38. # Directories potentially created on remote AFP share
  39. .AppleDB
  40. .AppleDesktop
  41. Network Trash Folder
  42. Temporary Items
  43. .apdisk
  44. ### Python template
  45. # Byte-compiled / optimized / DLL files
  46. __pycache__/
  47. *.py[cod]
  48. *$py.class
  49. # C extensions
  50. *.so
  51. # Distribution / packaging
  52. .Python
  53. build/
  54. develop-eggs/
  55. dist/
  56. downloads/
  57. eggs/
  58. .eggs/
  59. lib/
  60. lib64/
  61. parts/
  62. sdist/
  63. var/
  64. wheels/
  65. *.egg-info/
  66. .installed.cfg
  67. *.egg
  68. MANIFEST
  69. # PyInstaller
  70. # Usually these files are written by a python script from a template
  71. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  72. *.manifest
  73. *.spec
  74. # Installer logs
  75. pip-log.txt
  76. pip-delete-this-directory.txt
  77. # Unit test / coverage reports
  78. htmlcov/
  79. .tox/
  80. .coverage
  81. .coverage.*
  82. .cache
  83. nosetests.xml
  84. coverage.xml
  85. *.cover
  86. .hypothesis/
  87. .pytest_cache/
  88. # Translations
  89. *.mo
  90. *.pot
  91. # Django stuff:
  92. *.log
  93. local_settings.py
  94. db.sqlite3
  95. # Flask stuff:
  96. instance/
  97. .webassets-cache
  98. # Scrapy stuff:
  99. .scrapy
  100. # Sphinx documentation
  101. docs/_build/
  102. # PyBuilder
  103. target/
  104. # Jupyter Notebook
  105. .ipynb_checkpoints
  106. # pyenv
  107. .python-version
  108. # celery beat schedule file
  109. celerybeat-schedule
  110. # SageMath parsed files
  111. *.sage.py
  112. # Environments
  113. .env
  114. .venv
  115. env/
  116. venv/
  117. ENV/
  118. env.bak/
  119. venv.bak/
  120. # Spyder project settings
  121. .spyderproject
  122. .spyproject
  123. # Rope project settings
  124. .ropeproject
  125. # mkdocs documentation
  126. /site
  127. # mypy
  128. .mypy_cache/
  129. ### Linux template
  130. *~
  131. # temporary files which can be created if a process still has a handle open of a deleted file
  132. .fuse_hidden*
  133. # KDE directory preferences
  134. .directory
  135. # Linux trash folder which might appear on any partition or disk
  136. .Trash-*
  137. # .nfs files are created when an open file is removed but is still being accessed
  138. .nfs*
  139. ### VisualStudioCode template
  140. .vscode
  141. ### Jebrains template
  142. .idea
  143. ### Dynaconf config
  144. **/*.local.yml
  145. **/.secrets.yml