.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. # ---> Go
  2. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  3. *.o
  4. # *.a
  5. # *.so
  6. # Folders
  7. _obj
  8. _test
  9. # Architecture specific extensions/prefixes
  10. *.[568vq]
  11. [568vq].out
  12. *.cgo1.go
  13. *.cgo2.c
  14. _cgo_defun.c
  15. _cgo_gotypes.go
  16. _cgo_export.*
  17. _testmain.go
  18. *.exe
  19. *.test
  20. *.prof
  21. # ---> C
  22. # Object files
  23. *.o
  24. *.ko
  25. *.obj
  26. *.elf
  27. # Precompiled Headers
  28. *.gch
  29. *.pch
  30. # Libraries
  31. # *.lib
  32. # *.a
  33. *.la
  34. *.lo
  35. # Shared objects (inc. Windows DLLs)
  36. #*.dll
  37. #*.so
  38. #*.so.*
  39. #*.dylib
  40. # Executables
  41. *.exe
  42. *.out
  43. *.app
  44. *.i*86
  45. *.x86_64
  46. *.hex
  47. # Debug files
  48. *.dSYM/
  49. # ---> C++
  50. # Compiled Object files
  51. *.slo
  52. *.lo
  53. *.o
  54. *.obj
  55. # Precompiled Headers
  56. *.gch
  57. *.pch
  58. # Compiled Dynamic libraries
  59. #*.so
  60. #*.dylib
  61. #*.dll
  62. # Fortran module files
  63. *.mod
  64. !go.mod
  65. # Compiled Static libraries
  66. *.lai
  67. *.la
  68. # *.a
  69. *.lib
  70. # Executables
  71. *.exe
  72. *.out
  73. *.app
  74. # ---> C Sharp
  75. # Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
  76. [Bb]in/
  77. [Oo]bj/
  78. # mstest test results
  79. TestResults
  80. ## Ignore Visual Studio temporary files, build results, and
  81. ## files generated by popular Visual Studio add-ons.
  82. # User-specific files
  83. *.suo
  84. *.user
  85. *.sln.docstates
  86. # Build results
  87. [Dd]ebug/
  88. [Rr]elease/
  89. x64/
  90. *_i.c
  91. *_p.c
  92. *.ilk
  93. *.obj
  94. *.pch
  95. *.pdb
  96. *.pgc
  97. *.pgd
  98. *.rsp
  99. *.sbr
  100. *.tlb
  101. *.tli
  102. *.tlh
  103. *.tmp
  104. *.log
  105. *.vspscc
  106. *.vssscc
  107. .builds
  108. # Visual C++ cache files
  109. ipch/
  110. *.aps
  111. *.ncb
  112. *.opensdf
  113. *.sdf
  114. # Visual Studio profiler
  115. *.psess
  116. *.vsp
  117. *.vspx
  118. # Guidance Automation Toolkit
  119. *.gpState
  120. # ReSharper is a .NET coding add-in
  121. _ReSharper*
  122. # NCrunch
  123. *.ncrunch*
  124. .*crunch*.local.xml
  125. # Installshield output folder
  126. [Ee]xpress
  127. # DocProject is a documentation generator add-in
  128. DocProject/buildhelp/
  129. DocProject/Help/*.HxT
  130. DocProject/Help/*.HxC
  131. DocProject/Help/*.hhc
  132. DocProject/Help/*.hhk
  133. DocProject/Help/*.hhp
  134. DocProject/Help/Html2
  135. DocProject/Help/html
  136. # Click-Once directory
  137. publish
  138. # Publish Web Output
  139. *.Publish.xml
  140. # NuGet Packages Directory
  141. packages
  142. # Windows Azure Build Output
  143. csx
  144. *.build.csdef
  145. # Windows Store app package directory
  146. AppPackages/
  147. # Others
  148. [Bb]in
  149. [Oo]bj
  150. sql
  151. TestResults
  152. [Tt]est[Rr]esult*
  153. *.Cache
  154. ClientBin
  155. [Ss]tyle[Cc]op.*
  156. ~$*
  157. *.dbmdl
  158. Generated_Code #added for RIA/Silverlight projects
  159. # Backup & report files from converting an old project file to a newer
  160. # Visual Studio version. Backup files are not needed, because we have git ;-)
  161. _UpgradeReport_Files/
  162. Backup*/
  163. UpgradeLog*.XML
  164. # ---> Lua
  165. # Compiled Lua sources
  166. luac.out
  167. # luarocks build files
  168. *.src.rock
  169. *.zip
  170. *.tar.gz
  171. # Object files
  172. *.o
  173. *.os
  174. *.ko
  175. *.obj
  176. *.elf
  177. # Precompiled Headers
  178. *.gch
  179. *.pch
  180. # Libraries
  181. *.lib
  182. # *.a
  183. *.la
  184. *.lo
  185. *.def
  186. *.exp
  187. # Shared objects (inc. Windows DLLs)
  188. #*.dll
  189. #*.so
  190. #*.so.*
  191. #*.dylib
  192. # Executables
  193. *.exe
  194. *.out
  195. *.app
  196. *.i*86
  197. *.x86_64
  198. *.hex
  199. # Vim
  200. *.un~
  201. *.swp
  202. # ---> Unity
  203. /1ebt_mobile/[Ll]ibrary/
  204. /1ebt_mobile/[Tt]emp/
  205. /1ebt_mobile/[Oo]bj/
  206. /1ebt_mobile/[Bb]uild/
  207. /1ebt_mobile/.vs/
  208. /1ebt_mobile/.vscode/
  209. /1ebt_mobile/Assets/StreamingAssets/
  210. /1ebt_mobile/Assets/StreamingAssets.meta
  211. # Autogenerated VS/MD solution and project files
  212. *.csproj
  213. *.unityproj
  214. *.sln
  215. *.suo
  216. *.tmp
  217. *.user
  218. *.userprefs
  219. *.pidb
  220. *.booproj
  221. # Unity3D generated meta files
  222. *.pidb.meta
  223. # Unity3D Generated File On Crash Reports
  224. sysinfo.txt