.gitignore 2.7 KB

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