.gitignore 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. #################
  2. ## Eclipse
  3. #################
  4. vendor/*
  5. data/
  6. *.pydevproject
  7. .project
  8. .metadata
  9. bin/
  10. tmp/
  11. *.tmp
  12. *.bak
  13. *.swp
  14. *~.nib
  15. local.properties
  16. .classpath
  17. .settings/
  18. .loadpath
  19. # External tool builders
  20. .externalToolBuilders/
  21. # Locally stored "Eclipse launch configurations"
  22. *.launch
  23. # CDT-specific
  24. .cproject
  25. # PDT-specific
  26. .buildpath
  27. #################
  28. ## Visual Studio
  29. #################
  30. ## Ignore Visual Studio temporary files, build results, and
  31. ## files generated by popular Visual Studio add-ons.
  32. # User-specific files
  33. *.suo
  34. *.user
  35. *.sln.docstates
  36. # Build results
  37. [Dd]ebug/
  38. [Rr]elease/
  39. x64/
  40. build/
  41. [Bb]in/
  42. [Oo]bj/
  43. # MSTest test Results
  44. [Tt]est[Rr]esult*/
  45. [Bb]uild[Ll]og.*
  46. *_i.c
  47. *_p.c
  48. *.ilk
  49. *.meta
  50. *.obj
  51. *.pch
  52. *.pdb
  53. *.pgc
  54. *.pgd
  55. *.rsp
  56. *.sbr
  57. *.tlb
  58. *.tli
  59. *.tlh
  60. *.tmp
  61. *.tmp_proj
  62. *.log
  63. *.vspscc
  64. *.vssscc
  65. .builds
  66. *.pidb
  67. *.log
  68. *.scc
  69. # Visual C++ cache files
  70. ipch/
  71. *.aps
  72. *.ncb
  73. *.opensdf
  74. *.sdf
  75. *.cachefile
  76. # Visual Studio profiler
  77. *.psess
  78. *.vsp
  79. *.vspx
  80. # Guidance Automation Toolkit
  81. *.gpState
  82. # ReSharper is a .NET coding add-in
  83. _ReSharper*/
  84. *.[Rr]e[Ss]harper
  85. # TeamCity is a build add-in
  86. _TeamCity*
  87. # DotCover is a Code Coverage Tool
  88. *.dotCover
  89. # NCrunch
  90. *.ncrunch*
  91. .*crunch*.local.xml
  92. # Installshield output folder
  93. [Ee]xpress/
  94. # DocProject is a documentation generator add-in
  95. DocProject/buildhelp/
  96. DocProject/Help/*.HxT
  97. DocProject/Help/*.HxC
  98. DocProject/Help/*.hhc
  99. DocProject/Help/*.hhk
  100. DocProject/Help/*.hhp
  101. DocProject/Help/Html2
  102. DocProject/Help/html
  103. # Click-Once directory
  104. publish/
  105. # Publish Web Output
  106. *.Publish.xml
  107. *.pubxml
  108. # NuGet Packages Directory
  109. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  110. #packages/
  111. # Windows Azure Build Output
  112. csx
  113. *.build.csdef
  114. # Windows Store app package directory
  115. AppPackages/
  116. # Others
  117. sql/
  118. *.Cache
  119. ClientBin/
  120. [Ss]tyle[Cc]op.*
  121. ~$*
  122. *~
  123. *.dbmdl
  124. *.[Pp]ublish.xml
  125. *.pfx
  126. *.publishsettings
  127. # RIA/Silverlight projects
  128. Generated_Code/
  129. # Backup & report files from converting an old project file to a newer
  130. # Visual Studio version. Backup files are not needed, because we have git ;-)
  131. _UpgradeReport_Files/
  132. Backup*/
  133. UpgradeLog*.XML
  134. UpgradeLog*.htm
  135. # SQL Server files
  136. App_Data/*.mdf
  137. App_Data/*.ldf
  138. #################
  139. ## Other ide stuff
  140. #################
  141. .idea/*
  142. [#]*[#]
  143. #############
  144. ## Windows detritus
  145. #############
  146. # Windows image file caches
  147. Thumbs.db
  148. ehthumbs.db
  149. # Folder config file
  150. Desktop.ini
  151. # Recycle Bin used on file shares
  152. $RECYCLE.BIN/
  153. # Mac crap
  154. .DS_Store
  155. #############
  156. ## Python
  157. #############
  158. *.py[co]
  159. # Packages
  160. *.egg
  161. *.egg-info
  162. dist/
  163. build/
  164. eggs/
  165. parts/
  166. var/
  167. sdist/
  168. develop-eggs/
  169. .installed.cfg
  170. # Installer logs
  171. pip-log.txt
  172. # Unit test / coverage reports
  173. .coverage
  174. .tox
  175. #Translations
  176. *.mo
  177. #Mr Developer
  178. .mr.developer.cfg
  179. ##############
  180. ## RSS-Bridge
  181. ##############
  182. /cache
  183. /whitelist.txt
  184. DEBUG
  185. config.ini.php
  186. ######################
  187. ## VisualStudioCode ##
  188. ######################
  189. .vscode/*
  190. #Builder
  191. .buildconfig
  192. config.defines.php