.gitignore 4.7 KB

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