.gitignore 2.7 KB

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