.gitignore 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. tmp/*
  2. ############# Ruby Gem
  3. *.gem
  4. *.rbc
  5. /.config
  6. /coverage/
  7. /InstalledFiles
  8. /pkg/
  9. /spec/reports/
  10. /spec/examples.txt
  11. /test/tmp/
  12. /test/version_tmp/
  13. /tmp/
  14. # Used by dotenv library to load environment variables.
  15. # .env
  16. ## Specific to RubyMotion:
  17. .dat*
  18. .repl_history
  19. build/
  20. *.bridgesupport
  21. build-iPhoneOS/
  22. build-iPhoneSimulator/
  23. ## Specific to RubyMotion (use of CocoaPods):
  24. #
  25. # We recommend against adding the Pods directory to your .gitignore. However
  26. # you should judge for yourself, the pros and cons are mentioned at:
  27. # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
  28. #
  29. # vendor/Pods/
  30. ## Documentation cache and generated files:
  31. /.yardoc/
  32. /_yardoc/
  33. /doc/
  34. /rdoc/
  35. ## Environment normalization:
  36. /.bundle/
  37. /vendor/bundle
  38. /lib/bundler/man/
  39. # for a library or gem, you might want to ignore these files since the code is
  40. # intended to run in multiple environments; otherwise, check them in:
  41. # Gemfile.lock
  42. # .ruby-version
  43. # .ruby-gemset
  44. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  45. .rvmrc
  46. ############# Ruby Gem
  47. ############# Rust Crate
  48. /target
  49. ############# Rust Crate
  50. ############# PHP Composer
  51. /vendor
  52. composer.phar
  53. ############# PHP Composer
  54. ############# C# NuGet
  55. ## Ignore Visual Studio temporary files, build results, and
  56. ## files generated by popular Visual Studio add-ons.
  57. # User-specific files
  58. *.suo
  59. *.user
  60. *.sln.docstates
  61. # Build results
  62. [Dd]ebug/
  63. [Rr]elease/
  64. x64/
  65. [Bb]in/
  66. [Oo]bj/
  67. # MSTest test Results
  68. [Tt]est[Rr]esult*/
  69. [Bb]uild[Ll]og.*
  70. *_i.c
  71. *_p.c
  72. *_i.h
  73. *.ilk
  74. *.meta
  75. *.obj
  76. *.pch
  77. *.pdb
  78. *.pgc
  79. *.pgd
  80. *.rsp
  81. *.sbr
  82. *.tlb
  83. *.tli
  84. *.tlh
  85. *.tmp
  86. *.tmp_proj
  87. *.log
  88. *.vspscc
  89. *.vssscc
  90. .builds
  91. *.pidb
  92. *.log
  93. *.svclog
  94. *.scc
  95. # Visual C++ cache files
  96. ipch/
  97. *.aps
  98. *.ncb
  99. *.opensdf
  100. *.sdf
  101. *.cachefile
  102. # Visual Studio profiler
  103. *.psess
  104. *.vsp
  105. *.vspx
  106. # Guidance Automation Toolkit
  107. *.gpState
  108. # ReSharper is a .NET coding add-in
  109. _ReSharper*/
  110. *.[Rr]e[Ss]harper
  111. *.DotSettings.user
  112. # Click-Once directory
  113. publish/
  114. # Publish Web Output
  115. *.Publish.xml
  116. *.pubxml
  117. *.azurePubxml
  118. # C# NuGet Packages Directory
  119. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  120. packages/
  121. ## TODO: If the tool you use requires repositories.config, also uncomment the next line
  122. !packages/repositories.config
  123. # Windows Azure Build Output
  124. csx/
  125. *.build.csdef
  126. # Windows Store app package directory
  127. AppPackages/
  128. # Others
  129. sql/
  130. *.Cache
  131. ClientBin/
  132. [Ss]tyle[Cc]op.*
  133. ![Ss]tyle[Cc]op.targets
  134. ~$*
  135. *~
  136. *.dbmdl
  137. *.[Pp]ublish.xml
  138. *.publishsettings
  139. # RIA/Silverlight projects
  140. Generated_Code/
  141. # Backup & report files from converting an old project file to a newer
  142. # Visual Studio version. Backup files are not needed, because we have git ;-)
  143. _UpgradeReport_Files/
  144. Backup*/
  145. UpgradeLog*.XML
  146. UpgradeLog*.htm
  147. # SQL Server files
  148. App_Data/*.mdf
  149. App_Data/*.ldf
  150. # =========================
  151. # Windows detritus
  152. # =========================
  153. # Windows image file caches
  154. Thumbs.db
  155. ehthumbs.db
  156. # Folder config file
  157. Desktop.ini
  158. # Recycle Bin used on file shares
  159. $RECYCLE.BIN/
  160. # Mac desktop service store files
  161. .DS_Store
  162. _NCrunch*
  163. ############# C# NuGet