1
0

.gitignore 6.4 KB

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