.gitignore 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. Binaries/*
  2. #################
  3. ## Eclipse
  4. #################
  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. # External tool builders
  19. .externalToolBuilders/
  20. # Locally stored "Eclipse launch configurations"
  21. *.launch
  22. # CDT-specific
  23. .cproject
  24. # PDT-specific
  25. .buildpath
  26. #################
  27. ## Visual Studio
  28. #################
  29. ## Ignore Visual Studio temporary files, build results, and
  30. ## files generated by popular Visual Studio add-ons.
  31. # User-specific files
  32. *.suo
  33. *.user
  34. *.sln.docstates
  35. # Build results
  36. [Dd]ebug/
  37. [Rr]elease/
  38. x64/
  39. build/
  40. [Bb]in/
  41. [Oo]bj/
  42. # MSTest test Results
  43. [Tt]est[Rr]esult*/
  44. [Bb]uild[Ll]og.*
  45. *_i.c
  46. *_p.c
  47. *.ilk
  48. *.meta
  49. *.obj
  50. *.pch
  51. *.pdb
  52. *.pgc
  53. *.pgd
  54. *.rsp
  55. *.sbr
  56. *.tlb
  57. *.tli
  58. *.tlh
  59. *.tmp
  60. *.tmp_proj
  61. *.log
  62. *.vspscc
  63. *.vssscc
  64. .builds
  65. *.pidb
  66. *.log
  67. *.scc
  68. # Visual C++ cache files
  69. ipch/
  70. *.aps
  71. *.ncb
  72. *.opensdf
  73. *.sdf
  74. *.cachefile
  75. # Visual Studio profiler
  76. *.psess
  77. *.vsp
  78. *.vspx
  79. # Guidance Automation Toolkit
  80. *.gpState
  81. # ReSharper is a .NET coding add-in
  82. _ReSharper*/
  83. *.[Rr]e[Ss]harper
  84. # TeamCity is a build add-in
  85. _TeamCity*
  86. # DotCover is a Code Coverage Tool
  87. *.dotCover
  88. # NCrunch
  89. *.ncrunch*
  90. .*crunch*.local.xml
  91. # Installshield output folder
  92. [Ee]xpress/
  93. # DocProject is a documentation generator add-in
  94. DocProject/buildhelp/
  95. DocProject/Help/*.HxT
  96. DocProject/Help/*.HxC
  97. DocProject/Help/*.hhc
  98. DocProject/Help/*.hhk
  99. DocProject/Help/*.hhp
  100. DocProject/Help/Html2
  101. DocProject/Help/html
  102. # Click-Once directory
  103. publish/
  104. # Publish Web Output
  105. *.Publish.xml
  106. *.pubxml
  107. *.publishproj
  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. ## Windows detritus
  140. #############
  141. # Windows image file caches
  142. Thumbs.db
  143. ehthumbs.db
  144. # Folder config file
  145. Desktop.ini
  146. # Recycle Bin used on file shares
  147. $RECYCLE.BIN/
  148. # Mac crap
  149. .DS_Store
  150. #############
  151. ## Python
  152. #############
  153. *.py[cod]
  154. # Packages
  155. *.egg
  156. *.egg-info
  157. dist/
  158. build/
  159. eggs/
  160. parts/
  161. var/
  162. sdist/
  163. develop-eggs/
  164. .installed.cfg
  165. # Installer logs
  166. pip-log.txt
  167. # Unit test / coverage reports
  168. .coverage
  169. .tox
  170. #Translations
  171. *.mo
  172. #Mr Developer
  173. .mr.developer.cfg