.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. #################
  2. ## Eclipse
  3. #################
  4. DTAR_*/
  5. *.pydevproject
  6. .project
  7. .metadata
  8. bin/
  9. tmp/
  10. *.tmp
  11. *.bak
  12. *.swp
  13. *~.nib
  14. local.properties
  15. .classpath
  16. .settings/
  17. .loadpath
  18. mobile.userprefs
  19. .nuget
  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. ## Visual Studio
  30. #################
  31. ## Ignore Visual Studio temporary files, build results, and
  32. ## files generated by popular Visual Studio add-ons.
  33. # User-specific files
  34. *.suo
  35. *.user
  36. *.sln.docstates
  37. # Build results
  38. [Dd]ebug/
  39. [Rr]elease/
  40. x64/
  41. build/
  42. [Bb]in/
  43. [Oo]bj/
  44. [Pp]ackages/
  45. [Cc]omponents/
  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. # Visual C++ cache files
  73. ipch/
  74. *.aps
  75. *.ncb
  76. *.opensdf
  77. *.sdf
  78. *.cachefile
  79. # Visual Studio profiler
  80. *.psess
  81. *.vsp
  82. *.vspx
  83. # Guidance Automation Toolkit
  84. *.gpState
  85. # ReSharper is a .NET coding add-in
  86. _ReSharper*/
  87. *.[Rr]e[Ss]harper
  88. # TeamCity is a build add-in
  89. _TeamCity*
  90. # DotCover is a Code Coverage Tool
  91. *.dotCover
  92. # NCrunch
  93. *.ncrunch*
  94. .*crunch*.local.xml
  95. # Installshield output folder
  96. [Ee]xpress/
  97. # DocProject is a documentation generator add-in
  98. DocProject/buildhelp/
  99. DocProject/Help/*.HxT
  100. DocProject/Help/*.HxC
  101. DocProject/Help/*.hhc
  102. DocProject/Help/*.hhk
  103. DocProject/Help/*.hhp
  104. DocProject/Help/Html2
  105. DocProject/Help/html
  106. # Click-Once directory
  107. publish/
  108. # Publish Web Output
  109. *.Publish.xml
  110. *.pubxml
  111. # NuGet Packages Directory
  112. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  113. #packages/
  114. # Windows Azure Build Output
  115. csx
  116. *.build.csdef
  117. # Windows Store app package directory
  118. AppPackages/
  119. # Others
  120. sql/
  121. *.Cache
  122. ClientBin/
  123. [Ss]tyle[Cc]op.*
  124. ~$*
  125. *~
  126. *.dbmdl
  127. *.[Pp]ublish.xml
  128. *.pfx
  129. *.publishsettings
  130. # RIA/Silverlight projects
  131. Generated_Code/
  132. # Backup & report files from converting an old project file to a newer
  133. # Visual Studio version. Backup files are not needed, because we have git ;-)
  134. _UpgradeReport_Files/
  135. Backup*/
  136. UpgradeLog*.XML
  137. UpgradeLog*.htm
  138. # SQL Server files
  139. App_Data/*.mdf
  140. App_Data/*.ldf
  141. #############
  142. ## Windows detritus
  143. #############
  144. # Windows image file caches
  145. Thumbs.db
  146. ehthumbs.db
  147. # Folder config file
  148. Desktop.ini
  149. # Recycle Bin used on file shares
  150. $RECYCLE.BIN/
  151. # Mac crap
  152. .DS_Store
  153. #############
  154. Git
  155. #############
  156. *.orig
  157. #############
  158. ## Python
  159. #############
  160. *.py[co]
  161. # Packages
  162. *.egg
  163. *.egg-info
  164. dist/
  165. build/
  166. eggs/
  167. parts/
  168. var/
  169. sdist/
  170. develop-eggs/
  171. .installed.cfg
  172. # Installer logs
  173. pip-log.txt
  174. # Unit test / coverage reports
  175. .coverage
  176. .tox
  177. #Translations
  178. *.mo
  179. #Mr Developer
  180. .mr.developer.cfg