.gitignore 5.4 KB

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