.gitignore 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### JetBrains template
  3. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  4. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  5. # User-specific stuff:
  6. ../.idea/workspace.xml
  7. .idea/**/tasks.xml
  8. .idea/dictionaries
  9. .env
  10. lerna-debug.log
  11. dist
  12. e2e/__data__/*
  13. docs/resources/_gen/*
  14. docs/static/main.js*
  15. docs/static/main.css*
  16. docs/static/intro.js*
  17. docs/static/intro.css*
  18. docs/public
  19. docs/content/docs/typescript-api/*
  20. docs/data/build.json
  21. !docs/content/docs/typescript-api/_index.md
  22. docs/content/docs/graphql-api/*
  23. docs/content/docs/plugins/*
  24. !docs/content/docs/plugins/*.*
  25. !docs/content/docs/graphql-api/_index.md
  26. !docs/content/docs/graphql-api/shop/_index.md
  27. !docs/content/docs/graphql-api/admin/_index.md
  28. .vscode/
  29. yarn-error.log
  30. # Sensitive or high-churn files:
  31. .idea/**/dataSources/
  32. .idea/**/dataSources.ids
  33. .idea/**/dataSources.xml
  34. .idea/**/dataSources.local.xml
  35. .idea/**/sqlDataSources.xml
  36. .idea/**/dynamic.xml
  37. .idea/**/uiDesigner.xml
  38. # Gradle:
  39. .idea/**/gradle.xml
  40. .idea/**/libraries
  41. # CMake
  42. cmake-build-debug/
  43. # Mongo Explorer plugin:
  44. .idea/**/mongoSettings.xml
  45. ## File-based project format:
  46. *.iws
  47. ## Plugin-specific files:
  48. # IntelliJ
  49. out/
  50. # mpeltonen/sbt-idea plugin
  51. .idea_modules/
  52. # JIRA plugin
  53. atlassian-ide-plugin.xml
  54. # Cursive Clojure plugin
  55. .idea/replstate.xml
  56. # Crashlytics plugin (for Android Studio and IntelliJ)
  57. com_crashlytics_export_strings.xml
  58. crashlytics.properties
  59. crashlytics-build.properties
  60. fabric.properties
  61. ### VisualStudio template
  62. ## Ignore Visual Studio temporary files, build results, and
  63. ## files generated by popular Visual Studio add-ons.
  64. ##
  65. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  66. # User-specific files
  67. *.suo
  68. *.user
  69. *.userosscache
  70. *.sln.docstates
  71. # User-specific files (MonoDevelop/Xamarin Studio)
  72. *.userprefs
  73. # Build results
  74. [Dd]ebug/
  75. [Dd]ebugPublic/
  76. [Rr]elease/
  77. [Rr]eleases/
  78. x64/
  79. x86/
  80. bld/
  81. [Bb]in/
  82. [Oo]bj/
  83. [Ll]og/
  84. # Visual Studio 2015 cache/options directory
  85. .vs/
  86. # Uncomment if you have tasks that create the project's static files in wwwroot
  87. #wwwroot/
  88. # MSTest test Results
  89. [Tt]est[Rr]esult*/
  90. [Bb]uild[Ll]og.*
  91. # NUNIT
  92. *.VisualState.xml
  93. TestResult.xml
  94. # Build Results of an ATL Project
  95. [Dd]ebugPS/
  96. [Rr]eleasePS/
  97. dlldata.c
  98. # Benchmark Results
  99. BenchmarkDotNet.Artifacts/
  100. # .NET Core
  101. project.lock.json
  102. project.fragment.lock.json
  103. artifacts/
  104. **/Properties/launchSettings.json
  105. *_i.c
  106. *_p.c
  107. *_i.h
  108. *.ilk
  109. *.meta
  110. *.obj
  111. *.pch
  112. *.pdb
  113. *.pgc
  114. *.pgd
  115. *.rsp
  116. *.sbr
  117. *.tlb
  118. *.tli
  119. *.tlh
  120. *.tmp
  121. *.tmp_proj
  122. packages/core/yarn-error.log
  123. *.vspscc
  124. *.vssscc
  125. .builds
  126. *.pidb
  127. *.svclog
  128. *.scc
  129. # Chutzpah Test files
  130. _Chutzpah*
  131. # Visual C++ cache files
  132. ipch/
  133. *.aps
  134. *.ncb
  135. *.opendb
  136. *.opensdf
  137. *.sdf
  138. *.cachefile
  139. *.VC.db
  140. *.VC.VC.opendb
  141. # Visual Studio profiler
  142. *.psess
  143. *.vsp
  144. *.vspx
  145. *.sap
  146. # Visual Studio Trace Files
  147. *.e2e
  148. # TFS 2012 Local Workspace
  149. $tf/
  150. # Guidance Automation Toolkit
  151. *.gpState
  152. # ReSharper is a .NET coding add-in
  153. _ReSharper*/
  154. *.[Rr]e[Ss]harper
  155. *.DotSettings.user
  156. # JustCode is a .NET coding add-in
  157. .JustCode
  158. # TeamCity is a build add-in
  159. _TeamCity*
  160. # DotCover is a Code Coverage Tool
  161. *.dotCover
  162. # AxoCover is a Code Coverage Tool
  163. .axoCover/*
  164. !.axoCover/settings.json
  165. # Visual Studio code coverage results
  166. *.coverage
  167. *.coveragexml
  168. # NCrunch
  169. _NCrunch_*
  170. .*crunch*.local.xml
  171. nCrunchTemp_*
  172. # MightyMoose
  173. *.mm.*
  174. AutoTest.Net/
  175. # Web workbench (sass)
  176. .sass-cache/
  177. # Installshield output folder
  178. [Ee]xpress/
  179. # DocProject is a documentation generator add-in
  180. DocProject/buildhelp/
  181. DocProject/Help/*.HxT
  182. DocProject/Help/*.HxC
  183. DocProject/Help/*.hhc
  184. DocProject/Help/*.hhk
  185. DocProject/Help/*.hhp
  186. DocProject/Help/Html2
  187. DocProject/Help/html
  188. # Click-Once directory
  189. publish/
  190. # Publish Web Output
  191. *.[Pp]ublish.xml
  192. *.azurePubxml
  193. # Note: Comment the next line if you want to checkin your web deploy settings,
  194. # but database connection strings (with potential passwords) will be unencrypted
  195. *.pubxml
  196. *.publishproj
  197. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  198. # checkin your Azure Web App publish settings, but sensitive information contained
  199. # in these scripts will be unencrypted
  200. PublishScripts/
  201. # NuGet Packages
  202. *.nupkg
  203. # Uncomment if necessary however generally it will be regenerated when needed
  204. #!**/[Pp]ackages/repositories.config
  205. # NuGet v3's project.json files produces more ignorable files
  206. *.nuget.props
  207. *.nuget.targets
  208. # Microsoft Azure Build Output
  209. csx/
  210. *.build.csdef
  211. # Microsoft Azure Emulator
  212. ecf/
  213. rcf/
  214. # Windows Store app package directories and files
  215. AppPackages/
  216. BundleArtifacts/
  217. Package.StoreAssociation.xml
  218. _pkginfo.txt
  219. *.appx
  220. # Visual Studio cache files
  221. # files ending in .cache can be ignored
  222. *.[Cc]ache
  223. # but keep track of directories ending in .cache
  224. !*.[Cc]ache/
  225. # Others
  226. ClientBin/
  227. ~$*
  228. *~
  229. *.dbmdl
  230. *.dbproj.schemaview
  231. *.jfm
  232. *.pfx
  233. *.publishsettings
  234. orleans.codegen.cs
  235. # Since there are multiple workflows, uncomment next line to ignore bower_components
  236. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  237. #bower_components/
  238. # RIA/Silverlight projects
  239. Generated_Code/
  240. # Backup & report files from converting an old project file
  241. # to a newer Visual Studio version. Backup files are not needed,
  242. # because we have git ;-)
  243. _UpgradeReport_Files/
  244. Backup*/
  245. UpgradeLog*.XML
  246. UpgradeLog*.htm
  247. # SQL Server files
  248. *.mdf
  249. *.ldf
  250. *.ndf
  251. # Business Intelligence projects
  252. *.rdl.data
  253. *.bim.layout
  254. *.bim_*.settings
  255. # Microsoft Fakes
  256. FakesAssemblies/
  257. # GhostDoc plugin setting file
  258. *.GhostDoc.xml
  259. # Node.js Tools for Visual Studio
  260. .ntvs_analysis.dat
  261. node_modules/
  262. # Visual Studio 6 build log
  263. *.plg
  264. # Visual Studio 6 workspace options file
  265. *.opt
  266. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  267. *.vbw
  268. # Visual Studio LightSwitch build output
  269. **/*.HTMLClient/GeneratedArtifacts
  270. **/*.DesktopClient/GeneratedArtifacts
  271. **/*.DesktopClient/ModelManifest.xml
  272. **/*.Server/GeneratedArtifacts
  273. **/*.Server/ModelManifest.xml
  274. _Pvt_Extensions
  275. # Paket dependency manager
  276. .paket/paket.exe
  277. paket-files/
  278. # FAKE - F# Make
  279. .fake/
  280. # JetBrains Rider
  281. .idea/
  282. *.sln.iml
  283. # CodeRush
  284. .cr/
  285. # Python Tools for Visual Studio (PTVS)
  286. __pycache__/
  287. *.pyc
  288. # Cake - Uncomment if you are using it
  289. # tools/**
  290. # !tools/packages.config
  291. # Tabs Studio
  292. *.tss
  293. # Telerik's JustMock configuration file
  294. *.jmconfig
  295. # BizTalk build output
  296. *.btp.cs
  297. *.btm.cs
  298. *.odx.cs
  299. *.xsd.cs
  300. # OpenCover UI analysis results
  301. OpenCover/
  302. coverage/
  303. ### macOS template
  304. # General
  305. .DS_Store
  306. .AppleDouble
  307. .LSOverride
  308. # Icon must end with two \r
  309. Icon
  310. # Thumbnails
  311. ._*
  312. # Files that might appear in the root of a volume
  313. .DocumentRevisions-V100
  314. .fseventsd
  315. .Spotlight-V100
  316. .TemporaryItems
  317. .Trashes
  318. .VolumeIcon.icns
  319. .com.apple.timemachine.donotpresent
  320. # Directories potentially created on remote AFP share
  321. .AppleDB
  322. .AppleDesktop
  323. Network Trash Folder
  324. Temporary Items
  325. .apdisk