.gitignore 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. config.json
  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. # 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[co]
  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. config.default.json