.gitignore 4.7 KB

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