.gitignore 3.4 KB

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