.gitignore 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. # ---> Vim
  2. [._]*.s[a-w][a-z]
  3. [._]s[a-w][a-z]
  4. *.un~
  5. Session.vim
  6. .netrwhist
  7. *~
  8. # ---> VisualStudio
  9. ## Ignore Visual Studio temporary files, build results, and
  10. ## files generated by popular Visual Studio add-ons.
  11. # User-specific files
  12. *.suo
  13. *.user
  14. *.userosscache
  15. *.sln.docstates
  16. # User-specific files (MonoDevelop/Xamarin Studio)
  17. *.userprefs
  18. # Build results
  19. [Dd]ebug/
  20. [Dd]ebugPublic/
  21. [Rr]elease/
  22. [Rr]eleases/
  23. x64/
  24. x86/
  25. build/
  26. bld/
  27. [Bb]in/
  28. [Oo]bj/
  29. # Visual Studio 2015 cache/options directory
  30. .vs/
  31. # Uncomment if you have tasks that create the project's static files in wwwroot
  32. #wwwroot/
  33. # MSTest test Results
  34. [Tt]est[Rr]esult*/
  35. [Bb]uild[Ll]og.*
  36. # NUNIT
  37. *.VisualState.xml
  38. TestResult.xml
  39. # Build Results of an ATL Project
  40. [Dd]ebugPS/
  41. [Rr]eleasePS/
  42. dlldata.c
  43. # DNX
  44. project.lock.json
  45. artifacts/
  46. *_i.c
  47. *_p.c
  48. *_i.h
  49. *.ilk
  50. *.meta
  51. *.obj
  52. *.pch
  53. *.pdb
  54. *.pgc
  55. *.pgd
  56. *.rsp
  57. *.sbr
  58. *.tlb
  59. *.tli
  60. *.tlh
  61. *.tmp
  62. *.tmp_proj
  63. *.log
  64. *.vspscc
  65. *.vssscc
  66. .builds
  67. *.pidb
  68. *.svclog
  69. *.scc
  70. # Chutzpah Test files
  71. _Chutzpah*
  72. # Visual C++ cache files
  73. ipch/
  74. *.aps
  75. *.ncb
  76. *.opensdf
  77. *.sdf
  78. *.cachefile
  79. # Visual Studio profiler
  80. *.psess
  81. *.vsp
  82. *.vspx
  83. *.sap
  84. # TFS 2012 Local Workspace
  85. $tf/
  86. # Guidance Automation Toolkit
  87. *.gpState
  88. # ReSharper is a .NET coding add-in
  89. _ReSharper*/
  90. *.[Rr]e[Ss]harper
  91. *.DotSettings.user
  92. # JustCode is a .NET coding add-in
  93. .JustCode
  94. # TeamCity is a build add-in
  95. _TeamCity*
  96. # DotCover is a Code Coverage Tool
  97. *.dotCover
  98. # NCrunch
  99. _NCrunch_*
  100. .*crunch*.local.xml
  101. nCrunchTemp_*
  102. # MightyMoose
  103. *.mm.*
  104. AutoTest.Net/
  105. # Web workbench (sass)
  106. .sass-cache/
  107. # Installshield output folder
  108. [Ee]xpress/
  109. # DocProject is a documentation generator add-in
  110. DocProject/buildhelp/
  111. DocProject/Help/*.HxT
  112. DocProject/Help/*.HxC
  113. DocProject/Help/*.hhc
  114. DocProject/Help/*.hhk
  115. DocProject/Help/*.hhp
  116. DocProject/Help/Html2
  117. DocProject/Help/html
  118. # Click-Once directory
  119. publish/
  120. # Publish Web Output
  121. *.[Pp]ublish.xml
  122. *.azurePubxml
  123. # TODO: Comment the next line if you want to checkin your web deploy settings
  124. # but database connection strings (with potential passwords) will be unencrypted
  125. *.pubxml
  126. *.publishproj
  127. # NuGet Packages
  128. *.nupkg
  129. # The packages folder can be ignored because of Package Restore
  130. **/packages/*
  131. # except build/, which is used as an MSBuild target.
  132. !**/packages/build/
  133. # Uncomment if necessary however generally it will be regenerated when needed
  134. #!**/packages/repositories.config
  135. # Windows Azure Build Output
  136. csx/
  137. *.build.csdef
  138. # Windows Store app package directory
  139. AppPackages/
  140. # Visual Studio cache files
  141. # files ending in .cache can be ignored
  142. *.[Cc]ache
  143. # but keep track of directories ending in .cache
  144. !*.[Cc]ache/
  145. # Others
  146. ClientBin/
  147. [Ss]tyle[Cc]op.*
  148. ~$*
  149. *~
  150. *.dbmdl
  151. *.dbproj.schemaview
  152. *.pfx
  153. *.publishsettings
  154. node_modules/
  155. orleans.codegen.cs
  156. # RIA/Silverlight projects
  157. Generated_Code/
  158. # Backup & report files from converting an old project file
  159. # to a newer Visual Studio version. Backup files are not needed,
  160. # because we have git ;-)
  161. _UpgradeReport_Files/
  162. Backup*/
  163. UpgradeLog*.XML
  164. UpgradeLog*.htm
  165. # SQL Server files
  166. *.mdf
  167. *.ldf
  168. # Business Intelligence projects
  169. *.rdl.data
  170. *.bim.layout
  171. *.bim_*.settings
  172. # Microsoft Fakes
  173. FakesAssemblies/
  174. # Node.js Tools for Visual Studio
  175. .ntvs_analysis.dat
  176. # Visual Studio 6 build log
  177. *.plg
  178. # Visual Studio 6 workspace options file
  179. *.opt
  180. # Visual Studio LightSwitch build output
  181. **/*.HTMLClient/GeneratedArtifacts
  182. **/*.DesktopClient/GeneratedArtifacts
  183. **/*.DesktopClient/ModelManifest.xml
  184. **/*.Server/GeneratedArtifacts
  185. **/*.Server/ModelManifest.xml
  186. _Pvt_Extensions
  187. # ---> VisualStudioCode
  188. .settings
  189. # ---> Emacs
  190. # -*- mode: gitignore; -*-
  191. *~
  192. \#*\#
  193. /.emacs.desktop
  194. /.emacs.desktop.lock
  195. *.elc
  196. auto-save-list
  197. tramp
  198. .\#*
  199. # Org-mode
  200. .org-id-locations
  201. *_archive
  202. # flymake-mode
  203. *_flymake.*
  204. # eshell files
  205. /eshell/history
  206. /eshell/lastdir
  207. # elpa packages
  208. /elpa/
  209. # reftex files
  210. *.rel
  211. # AUCTeX auto folder
  212. /auto/
  213. # cask packages
  214. .cask/
  215. # ---> Node
  216. # Logs
  217. logs
  218. *.log
  219. npm-debug.log*
  220. # Runtime data
  221. pids
  222. *.pid
  223. *.seed
  224. # Directory for instrumented libs generated by jscoverage/JSCover
  225. lib-cov
  226. # Coverage directory used by tools like istanbul
  227. coverage
  228. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  229. .grunt
  230. # node-waf configuration
  231. .lock-wscript
  232. # Compiled binary addons (http://nodejs.org/api/addons.html)
  233. build/Release
  234. # Dependency directory
  235. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  236. node_modules
  237. # ---> SublimeText
  238. # cache files for sublime text
  239. *.tmlanguage.cache
  240. *.tmPreferences.cache
  241. *.stTheme.cache
  242. # workspace files are user-specific
  243. *.sublime-workspace
  244. # project files should be checked into the repository, unless a significant
  245. # proportion of contributors will probably not be using SublimeText
  246. # *.sublime-project
  247. # sftp configuration file
  248. sftp-config.json