.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. # ---> macOS
  2. .DS_Store
  3. .AppleDouble
  4. .LSOverride
  5. # Icon must end with two \r
  6. Icon
  7. # Thumbnails
  8. ._*
  9. # Files that might appear in the root of a volume
  10. .DocumentRevisions-V100
  11. .fseventsd
  12. .Spotlight-V100
  13. .TemporaryItems
  14. .Trashes
  15. .VolumeIcon.icns
  16. # Directories potentially created on remote AFP share
  17. .AppleDB
  18. .AppleDesktop
  19. Network Trash Folder
  20. Temporary Items
  21. .apdisk
  22. # ---> Windows
  23. # Windows image file caches
  24. Thumbs.db
  25. ehthumbs.db
  26. # Folder config file
  27. Desktop.ini
  28. # Recycle Bin used on file shares
  29. $RECYCLE.BIN/
  30. # Windows Installer files
  31. *.cab
  32. *.msi
  33. *.msm
  34. *.msp
  35. # Windows shortcuts
  36. *.lnk
  37. # ---> Vim
  38. [._]*.s[a-w][a-z]
  39. [._]s[a-w][a-z]
  40. *.un~
  41. Session.vim
  42. .netrwhist
  43. *~
  44. # ---> Emacs
  45. # -*- mode: gitignore; -*-
  46. *~
  47. \#*\#
  48. /.emacs.desktop
  49. /.emacs.desktop.lock
  50. *.elc
  51. auto-save-list
  52. tramp
  53. .\#*
  54. # Org-mode
  55. .org-id-locations
  56. *_archive
  57. # flymake-mode
  58. *_flymake.*
  59. # eshell files
  60. /eshell/history
  61. /eshell/lastdir
  62. # elpa packages
  63. /elpa/
  64. # reftex files
  65. *.rel
  66. # AUCTeX auto folder
  67. /auto/
  68. # cask packages
  69. .cask/
  70. # ---> JetBrains
  71. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  72. *.iml
  73. ## Directory-based project format:
  74. .idea/
  75. # if you remove the above rule, at least ignore the following:
  76. # User-specific stuff:
  77. # .idea/workspace.xml
  78. # .idea/tasks.xml
  79. # .idea/dictionaries
  80. # Sensitive or high-churn files:
  81. # .idea/dataSources.ids
  82. # .idea/dataSources.xml
  83. # .idea/sqlDataSources.xml
  84. # .idea/dynamic.xml
  85. # .idea/uiDesigner.xml
  86. # Gradle:
  87. # .idea/gradle.xml
  88. # .idea/libraries
  89. # Mongo Explorer plugin:
  90. # .idea/mongoSettings.xml
  91. ## File-based project format:
  92. *.ipr
  93. *.iws
  94. ## Plugin-specific files:
  95. # IntelliJ
  96. /out/
  97. # mpeltonen/sbt-idea plugin
  98. .idea_modules/
  99. # JIRA plugin
  100. atlassian-ide-plugin.xml
  101. # Crashlytics plugin (for Android Studio and IntelliJ)
  102. com_crashlytics_export_strings.xml
  103. crashlytics.properties
  104. crashlytics-build.properties
  105. # ---> Node
  106. # Logs
  107. logs
  108. *.log
  109. npm-debug.log*
  110. # Runtime data
  111. pids
  112. *.pid
  113. *.seed
  114. # Directory for instrumented libs generated by jscoverage/JSCover
  115. lib-cov
  116. # Coverage directory used by tools like istanbul
  117. coverage
  118. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  119. .grunt
  120. # node-waf configuration
  121. .lock-wscript
  122. # Compiled binary addons (http://nodejs.org/api/addons.html)
  123. build/Release
  124. # Dependency directory
  125. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  126. node_modules
  127. # ---> Python
  128. # Byte-compiled / optimized / DLL files
  129. __pycache__/
  130. *.py[cod]
  131. *$py.class
  132. # C extensions
  133. *.so
  134. # Distribution / packaging
  135. .Python
  136. env/
  137. build/
  138. develop-eggs/
  139. dist/
  140. downloads/
  141. eggs/
  142. .eggs/
  143. lib/
  144. lib64/
  145. parts/
  146. sdist/
  147. var/
  148. *.egg-info/
  149. .installed.cfg
  150. *.egg
  151. # PyInstaller
  152. # Usually these files are written by a python script from a template
  153. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  154. *.manifest
  155. *.spec
  156. # Installer logs
  157. pip-log.txt
  158. pip-delete-this-directory.txt
  159. # Unit test / coverage reports
  160. htmlcov/
  161. .tox/
  162. .coverage
  163. .coverage.*
  164. .cache
  165. nosetests.xml
  166. coverage.xml
  167. *,cover
  168. # Translations
  169. *.mo
  170. *.pot
  171. # Django stuff:
  172. *.log
  173. # Sphinx documentation
  174. docs/_build/
  175. # PyBuilder
  176. target/
  177. # ---> VisualStudioCode
  178. .settings