.gitignore 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. .DS_Store
  2. node_modules
  3. /dist
  4. # local env files
  5. .env.local
  6. .env.*.local
  7. # Log files
  8. npm-debug.log*
  9. yarn-debug.log*
  10. yarn-error.log*
  11. pnpm-debug.log*
  12. # Editor directories and files
  13. .idea
  14. .vscode
  15. *.suo
  16. *.ntvs*
  17. *.njsproj
  18. #*.sln
  19. *.sw?
  20. ## Ignore Visual Studio temporary files, build results, and
  21. ## files generated by popular Visual Studio add-ons.
  22. # User-specific files
  23. *.suo
  24. *.user
  25. *.userosscache
  26. *.sln.docstates
  27. # User-specific files (MonoDevelop/Xamarin Studio)
  28. *.userprefs
  29. # Build results
  30. [Dd]ebug/
  31. [Dd]ebugPublic/
  32. [Rr]elease/
  33. [Rr]eleases/
  34. x64/
  35. x86/
  36. build/
  37. bld/
  38. bin/
  39. Bin/
  40. obj/
  41. Obj/
  42. # Visual Studio 2015 cache/options directory
  43. .vs/
  44. # MSTest test Results
  45. [Tt]est[Rr]esult*/
  46. [Bb]uild[Ll]og.*
  47. # NUNIT
  48. *.VisualState.xml
  49. TestResult.xml
  50. # Build Results of an ATL Project
  51. [Dd]ebugPS/
  52. [Rr]eleasePS/
  53. dlldata.c
  54. *_i.c
  55. *_p.c
  56. *_i.h
  57. *.ilk
  58. *.meta
  59. *.obj
  60. *.pch
  61. *.pdb
  62. *.pgc
  63. *.pgd
  64. *.rsp
  65. *.sbr
  66. *.tlb
  67. *.tli
  68. *.tlh
  69. *.tmp
  70. *.tmp_proj
  71. *.log
  72. *.vspscc
  73. *.vssscc
  74. .builds
  75. *.pidb
  76. *.svclog
  77. *.scc
  78. # Chutzpah Test files
  79. _Chutzpah*
  80. # Visual C++ cache files
  81. ipch/
  82. *.aps
  83. *.ncb
  84. *.opendb
  85. *.opensdf
  86. *.sdf
  87. *.cachefile
  88. # Visual Studio profiler
  89. *.psess
  90. *.vsp
  91. *.vspx
  92. *.sap
  93. # TFS 2012 Local Workspace
  94. $tf/
  95. # Guidance Automation Toolkit
  96. *.gpState
  97. # ReSharper is a .NET coding add-in
  98. _ReSharper*/
  99. *.[Rr]e[Ss]harper
  100. *.DotSettings.user
  101. # JustCode is a .NET coding add-in
  102. .JustCode
  103. # TeamCity is a build add-in
  104. _TeamCity*
  105. # DotCover is a Code Coverage Tool
  106. *.dotCover
  107. # NCrunch
  108. _NCrunch_*
  109. .*crunch*.local.xml
  110. nCrunchTemp_*
  111. # MightyMoose
  112. *.mm.*
  113. AutoTest.Net/
  114. # Web workbench (sass)
  115. .sass-cache/
  116. # Installshield output folder
  117. [Ee]xpress/
  118. # DocProject is a documentation generator add-in
  119. DocProject/buildhelp/
  120. DocProject/Help/*.HxT
  121. DocProject/Help/*.HxC
  122. DocProject/Help/*.hhc
  123. DocProject/Help/*.hhk
  124. DocProject/Help/*.hhp
  125. DocProject/Help/Html2
  126. DocProject/Help/html
  127. # Click-Once directory
  128. publish/
  129. # Publish Web Output
  130. *.[Pp]ublish.xml
  131. *.azurePubxml
  132. # TODO: Comment the next line if you want to checkin your web deploy settings
  133. # but database connection strings (with potential passwords) will be unencrypted
  134. *.pubxml
  135. *.publishproj
  136. # NuGet Packages
  137. *.nupkg
  138. # The packages folder can be ignored because of Package Restore
  139. **/packages/*
  140. # except build/, which is used as an MSBuild target.
  141. !**/packages/build/
  142. # Uncomment if necessary however generally it will be regenerated when needed
  143. #!**/packages/repositories.config
  144. # Microsoft Azure Build Output
  145. csx/
  146. *.build.csdef
  147. # Microsoft Azure Emulator
  148. ecf/
  149. rcf/
  150. # Microsoft Azure ApplicationInsights config file
  151. ApplicationInsights.config
  152. # Windows Store app package directory
  153. AppPackages/
  154. BundleArtifacts/
  155. # Visual Studio cache files
  156. # files ending in .cache can be ignored
  157. *.[Cc]ache
  158. # but keep track of directories ending in .cache
  159. !*.[Cc]ache/
  160. # Others
  161. ClientBin/
  162. ~$*
  163. *~
  164. *.dbmdl
  165. *.dbproj.schemaview
  166. *.pfx
  167. *.publishsettings
  168. orleans.codegen.cs
  169. /node_modules
  170. # RIA/Silverlight projects
  171. Generated_Code/
  172. # Backup & report files from converting an old project file
  173. # to a newer Visual Studio version. Backup files are not needed,
  174. # because we have git ;-)
  175. _UpgradeReport_Files/
  176. Backup*/
  177. UpgradeLog*.XML
  178. UpgradeLog*.htm
  179. # SQL Server files
  180. *.mdf
  181. *.ldf
  182. # Business Intelligence projects
  183. *.rdl.data
  184. *.bim.layout
  185. *.bim_*.settings
  186. # Microsoft Fakes
  187. FakesAssemblies/
  188. # GhostDoc plugin setting file
  189. *.GhostDoc.xml
  190. # Node.js Tools for Visual Studio
  191. .ntvs_analysis.dat
  192. # Visual Studio 6 build log
  193. *.plg
  194. # Visual Studio 6 workspace options file
  195. *.opt
  196. # Visual Studio LightSwitch build output
  197. **/*.HTMLClient/GeneratedArtifacts
  198. **/*.DesktopClient/GeneratedArtifacts
  199. **/*.DesktopClient/ModelManifest.xml
  200. **/*.Server/GeneratedArtifacts
  201. **/*.Server/ModelManifest.xml
  202. _Pvt_Extensions
  203. # Paket dependency manager
  204. .paket/paket.exe
  205. # FAKE - F# Make
  206. .fake/