.gitignore 2.6 KB

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