.gitignore 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196
  1. # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
  2. # dependencies
  3. **/node_modules
  4. # roadhog-api-doc ignore
  5. /src/utils/request-temp.js
  6. _roadhog-api-doc
  7. # production
  8. /dist
  9. # misc
  10. .DS_Store
  11. npm-debug.log*
  12. yarn-error.log
  13. /coverage
  14. .idea
  15. yarn.lock
  16. package-lock.json
  17. *bak
  18. .vscode
  19. # visual studio code
  20. .history
  21. *.log
  22. functions/*
  23. .temp/**
  24. # umi
  25. .umi
  26. .umi-production
  27. .umi-test
  28. # screenshot
  29. screenshot
  30. .firebase
  31. .eslintcache
  32. build
  33. ### Intellij template
  34. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  35. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  36. # User-specific stuff
  37. .idea/**/workspace.xml
  38. .idea/**/tasks.xml
  39. .idea/**/usage.statistics.xml
  40. .idea/**/dictionaries
  41. .idea/**/shelf
  42. # AWS User-specific
  43. .idea/**/aws.xml
  44. # Generated files
  45. .idea/**/contentModel.xml
  46. # Sensitive or high-churn files
  47. .idea/**/dataSources/
  48. .idea/**/dataSources.ids
  49. .idea/**/dataSources.local.xml
  50. .idea/**/sqlDataSources.xml
  51. .idea/**/dynamic.xml
  52. .idea/**/uiDesigner.xml
  53. .idea/**/dbnavigator.xml
  54. # Gradle
  55. .idea/**/gradle.xml
  56. .idea/**/libraries
  57. # Gradle and Maven with auto-import
  58. # When using Gradle or Maven with auto-import, you should exclude module files,
  59. # since they will be recreated, and may cause churn. Uncomment if using
  60. # auto-import.
  61. # .idea/artifacts
  62. # .idea/compiler.xml
  63. # .idea/jarRepositories.xml
  64. # .idea/modules.xml
  65. # .idea/*.iml
  66. # .idea/modules
  67. # *.iml
  68. # *.ipr
  69. # CMake
  70. cmake-build-*/
  71. # Mongo Explorer plugin
  72. .idea/**/mongoSettings.xml
  73. # File-based project format
  74. *.iws
  75. # IntelliJ
  76. out/
  77. # mpeltonen/sbt-idea plugin
  78. .idea_modules/
  79. # JIRA plugin
  80. atlassian-ide-plugin.xml
  81. # Cursive Clojure plugin
  82. .idea/replstate.xml
  83. # SonarLint plugin
  84. .idea/sonarlint/
  85. # Crashlytics plugin (for Android Studio and IntelliJ)
  86. com_crashlytics_export_strings.xml
  87. crashlytics.properties
  88. crashlytics-build.properties
  89. fabric.properties
  90. # Editor-based Rest Client
  91. .idea/httpRequests
  92. # Android studio 3.1+ serialized cache file
  93. .idea/caches/build_file_checksums.ser
  94. ### VisualStudioCode template
  95. .vscode/*
  96. !.vscode/settings.json
  97. !.vscode/tasks.json
  98. !.vscode/launch.json
  99. !.vscode/extensions.json
  100. !.vscode/*.code-snippets
  101. # Local History for Visual Studio Code
  102. .history/
  103. # Built Visual Studio Code Extensions
  104. *.vsix
  105. ### Xcode template
  106. ## User settings
  107. xcuserdata/
  108. ### AppCode+iml template
  109. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  110. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  111. # User-specific stuff
  112. # AWS User-specific
  113. # Generated files
  114. # Sensitive or high-churn files
  115. # Gradle
  116. # Gradle and Maven with auto-import
  117. # When using Gradle or Maven with auto-import, you should exclude module files,
  118. # since they will be recreated, and may cause churn. Uncomment if using
  119. # auto-import.
  120. # .idea/artifacts
  121. # .idea/compiler.xml
  122. # .idea/jarRepositories.xml
  123. # .idea/modules.xml
  124. # .idea/*.iml
  125. # .idea/modules
  126. # *.iml
  127. # *.ipr
  128. # CMake
  129. # Mongo Explorer plugin
  130. # File-based project format
  131. # IntelliJ
  132. # mpeltonen/sbt-idea plugin
  133. # JIRA plugin
  134. # Cursive Clojure plugin
  135. # SonarLint plugin
  136. # Crashlytics plugin (for Android Studio and IntelliJ)
  137. # Editor-based Rest Client
  138. # Android studio 3.1+ serialized cache file
  139. ### Eclipse template
  140. .metadata
  141. bin/
  142. tmp/
  143. *.tmp
  144. *.bak
  145. *.swp
  146. *~.nib
  147. local.properties
  148. .settings/
  149. .loadpath
  150. .recommenders
  151. # External tool builders
  152. .externalToolBuilders/
  153. # Locally stored "Eclipse launch configurations"
  154. *.launch
  155. # PyDev specific (Python IDE for Eclipse)
  156. *.pydevproject
  157. # CDT-specific (C/C++ Development Tooling)
  158. .cproject
  159. # CDT- autotools
  160. .autotools
  161. # Java annotation processor (APT)
  162. .factorypath
  163. # PDT-specific (PHP Development Tools)
  164. .buildpath
  165. # sbteclipse plugin
  166. .target
  167. # Tern plugin
  168. .tern-project
  169. # TeXlipse plugin
  170. .texlipse
  171. # STS (Spring Tool Suite)
  172. .springBeans
  173. # Code Recommenders
  174. .recommenders/
  175. # Annotation Processing
  176. .apt_generated/
  177. .apt_generated_test/
  178. # Scala IDE specific (Scala & Java development for Eclipse)
  179. .cache-main
  180. .scala_dependencies
  181. .worksheet
  182. # Uncomment this line if you wish to ignore the project description file.
  183. # Typically, this file would be tracked if it contains build/dependency configurations:
  184. #.project
  185. ### Intellij+all template
  186. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  187. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  188. # User-specific stuff
  189. # AWS User-specific
  190. # Generated files
  191. # Sensitive or high-churn files
  192. # Gradle
  193. # Gradle and Maven with auto-import
  194. # When using Gradle or Maven with auto-import, you should exclude module files,
  195. # since they will be recreated, and may cause churn. Uncomment if using
  196. # auto-import.
  197. # .idea/artifacts
  198. # .idea/compiler.xml
  199. # .idea/jarRepositories.xml
  200. # .idea/modules.xml
  201. # .idea/*.iml
  202. # .idea/modules
  203. # *.iml
  204. # *.ipr
  205. # CMake
  206. # Mongo Explorer plugin
  207. # File-based project format
  208. # IntelliJ
  209. # mpeltonen/sbt-idea plugin
  210. # JIRA plugin
  211. # Cursive Clojure plugin
  212. # SonarLint plugin
  213. # Crashlytics plugin (for Android Studio and IntelliJ)
  214. # Editor-based Rest Client
  215. # Android studio 3.1+ serialized cache file
  216. ### Node template
  217. # Logs
  218. logs
  219. yarn-debug.log*
  220. yarn-error.log*
  221. lerna-debug.log*
  222. .pnpm-debug.log*
  223. # Diagnostic reports (https://nodejs.org/api/report.html)
  224. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  225. # Runtime data
  226. pids
  227. *.pid
  228. *.seed
  229. *.pid.lock
  230. # Directory for instrumented libs generated by jscoverage/JSCover
  231. lib-cov
  232. # Coverage directory used by tools like istanbul
  233. coverage
  234. *.lcov
  235. # nyc test coverage
  236. .nyc_output
  237. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  238. .grunt
  239. # Bower dependency directory (https://bower.io/)
  240. bower_components
  241. # node-waf configuration
  242. .lock-wscript
  243. # Compiled binary addons (https://nodejs.org/api/addons.html)
  244. build/Release
  245. # Dependency directories
  246. node_modules/
  247. jspm_packages/
  248. # Snowpack dependency directory (https://snowpack.dev/)
  249. web_modules/
  250. # TypeScript cache
  251. *.tsbuildinfo
  252. # Optional npm cache directory
  253. .npm
  254. # Optional eslint cache
  255. # Optional stylelint cache
  256. .stylelintcache
  257. # Microbundle cache
  258. .rpt2_cache/
  259. .rts2_cache_cjs/
  260. .rts2_cache_es/
  261. .rts2_cache_umd/
  262. # Optional REPL history
  263. .node_repl_history
  264. # Output of 'npm pack'
  265. *.tgz
  266. # Yarn Integrity file
  267. .yarn-integrity
  268. # dotenv environment variable files
  269. .env
  270. .env.development.local
  271. .env.test.local
  272. .env.production.local
  273. .env.local
  274. # parcel-bundler cache (https://parceljs.org/)
  275. .cache
  276. .parcel-cache
  277. # Next.js build output
  278. .next
  279. out
  280. # Nuxt.js build / generate output
  281. .nuxt
  282. dist
  283. # Gatsby files
  284. .cache/
  285. # Comment in the public line in if your project uses Gatsby and not Next.js
  286. # https://nextjs.org/blog/next-9-1#public-directory-support
  287. # public
  288. # vuepress build output
  289. .vuepress/dist
  290. # vuepress v2.x temp and cache directory
  291. .temp
  292. # Docusaurus cache and generated files
  293. .docusaurus
  294. # Serverless directories
  295. .serverless/
  296. # FuseBox cache
  297. .fusebox/
  298. # DynamoDB Local files
  299. .dynamodb/
  300. # TernJS port file
  301. .tern-port
  302. # Stores VSCode versions used for testing VSCode extensions
  303. .vscode-test
  304. # yarn v2
  305. .yarn/cache
  306. .yarn/unplugged
  307. .yarn/build-state.yml
  308. .yarn/install-state.gz
  309. .pnp.*
  310. ### AppCode+all template
  311. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  312. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  313. # User-specific stuff
  314. # AWS User-specific
  315. # Generated files
  316. # Sensitive or high-churn files
  317. # Gradle
  318. # Gradle and Maven with auto-import
  319. # When using Gradle or Maven with auto-import, you should exclude module files,
  320. # since they will be recreated, and may cause churn. Uncomment if using
  321. # auto-import.
  322. # .idea/artifacts
  323. # .idea/compiler.xml
  324. # .idea/jarRepositories.xml
  325. # .idea/modules.xml
  326. # .idea/*.iml
  327. # .idea/modules
  328. # *.iml
  329. # *.ipr
  330. # CMake
  331. # Mongo Explorer plugin
  332. # File-based project format
  333. # IntelliJ
  334. # mpeltonen/sbt-idea plugin
  335. # JIRA plugin
  336. # Cursive Clojure plugin
  337. # SonarLint plugin
  338. # Crashlytics plugin (for Android Studio and IntelliJ)
  339. # Editor-based Rest Client
  340. # Android studio 3.1+ serialized cache file
  341. ### Windows template
  342. # Windows thumbnail cache files
  343. Thumbs.db
  344. Thumbs.db:encryptable
  345. ehthumbs.db
  346. ehthumbs_vista.db
  347. # Dump file
  348. *.stackdump
  349. # Folder config file
  350. [Dd]esktop.ini
  351. # Recycle Bin used on file shares
  352. $RECYCLE.BIN/
  353. # Windows Installer files
  354. *.cab
  355. *.msi
  356. *.msix
  357. *.msm
  358. *.msp
  359. # Windows shortcuts
  360. *.lnk
  361. ### JetBrains+iml template
  362. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  363. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  364. # User-specific stuff
  365. # AWS User-specific
  366. # Generated files
  367. # Sensitive or high-churn files
  368. # Gradle
  369. # Gradle and Maven with auto-import
  370. # When using Gradle or Maven with auto-import, you should exclude module files,
  371. # since they will be recreated, and may cause churn. Uncomment if using
  372. # auto-import.
  373. # .idea/artifacts
  374. # .idea/compiler.xml
  375. # .idea/jarRepositories.xml
  376. # .idea/modules.xml
  377. # .idea/*.iml
  378. # .idea/modules
  379. # *.iml
  380. # *.ipr
  381. # CMake
  382. # Mongo Explorer plugin
  383. # File-based project format
  384. # IntelliJ
  385. # mpeltonen/sbt-idea plugin
  386. # JIRA plugin
  387. # Cursive Clojure plugin
  388. # SonarLint plugin
  389. # Crashlytics plugin (for Android Studio and IntelliJ)
  390. # Editor-based Rest Client
  391. # Android studio 3.1+ serialized cache file
  392. ### SublimeText template
  393. # Cache files for Sublime Text
  394. *.tmlanguage.cache
  395. *.tmPreferences.cache
  396. *.stTheme.cache
  397. # Workspace files are user-specific
  398. *.sublime-workspace
  399. # Project files should be checked into the repository, unless a significant
  400. # proportion of contributors will probably not be using Sublime Text
  401. # *.sublime-project
  402. # SFTP configuration file
  403. sftp-config.json
  404. sftp-config-alt*.json
  405. # Package control specific files
  406. Package Control.last-run
  407. Package Control.ca-list
  408. Package Control.ca-bundle
  409. Package Control.system-ca-bundle
  410. Package Control.cache/
  411. Package Control.ca-certs/
  412. Package Control.merged-ca-bundle
  413. Package Control.user-ca-bundle
  414. oscrypto-ca-bundle.crt
  415. bh_unicode_properties.cache
  416. # Sublime-github package stores a github token in this file
  417. # https://packagecontrol.io/packages/sublime-github
  418. GitHub.sublime-settings
  419. ### AppCode template
  420. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  421. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  422. # User-specific stuff
  423. # AWS User-specific
  424. # Generated files
  425. # Sensitive or high-churn files
  426. # Gradle
  427. # Gradle and Maven with auto-import
  428. # When using Gradle or Maven with auto-import, you should exclude module files,
  429. # since they will be recreated, and may cause churn. Uncomment if using
  430. # auto-import.
  431. # .idea/artifacts
  432. # .idea/compiler.xml
  433. # .idea/jarRepositories.xml
  434. # .idea/modules.xml
  435. # .idea/*.iml
  436. # .idea/modules
  437. # *.iml
  438. # *.ipr
  439. # CMake
  440. # Mongo Explorer plugin
  441. # File-based project format
  442. # IntelliJ
  443. # mpeltonen/sbt-idea plugin
  444. # JIRA plugin
  445. # Cursive Clojure plugin
  446. # SonarLint plugin
  447. # Crashlytics plugin (for Android Studio and IntelliJ)
  448. # Editor-based Rest Client
  449. # Android studio 3.1+ serialized cache file
  450. ### JetBrains+all template
  451. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  452. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  453. # User-specific stuff
  454. # AWS User-specific
  455. # Generated files
  456. # Sensitive or high-churn files
  457. # Gradle
  458. # Gradle and Maven with auto-import
  459. # When using Gradle or Maven with auto-import, you should exclude module files,
  460. # since they will be recreated, and may cause churn. Uncomment if using
  461. # auto-import.
  462. # .idea/artifacts
  463. # .idea/compiler.xml
  464. # .idea/jarRepositories.xml
  465. # .idea/modules.xml
  466. # .idea/*.iml
  467. # .idea/modules
  468. # *.iml
  469. # *.ipr
  470. # CMake
  471. # Mongo Explorer plugin
  472. # File-based project format
  473. # IntelliJ
  474. # mpeltonen/sbt-idea plugin
  475. # JIRA plugin
  476. # Cursive Clojure plugin
  477. # SonarLint plugin
  478. # Crashlytics plugin (for Android Studio and IntelliJ)
  479. # Editor-based Rest Client
  480. # Android studio 3.1+ serialized cache file
  481. ### JetBrains template
  482. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  483. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  484. # User-specific stuff
  485. # AWS User-specific
  486. # Generated files
  487. # Sensitive or high-churn files
  488. # Gradle
  489. # Gradle and Maven with auto-import
  490. # When using Gradle or Maven with auto-import, you should exclude module files,
  491. # since they will be recreated, and may cause churn. Uncomment if using
  492. # auto-import.
  493. # .idea/artifacts
  494. # .idea/compiler.xml
  495. # .idea/jarRepositories.xml
  496. # .idea/modules.xml
  497. # .idea/*.iml
  498. # .idea/modules
  499. # *.iml
  500. # *.ipr
  501. # CMake
  502. # Mongo Explorer plugin
  503. # File-based project format
  504. # IntelliJ
  505. # mpeltonen/sbt-idea plugin
  506. # JIRA plugin
  507. # Cursive Clojure plugin
  508. # SonarLint plugin
  509. # Crashlytics plugin (for Android Studio and IntelliJ)
  510. # Editor-based Rest Client
  511. # Android studio 3.1+ serialized cache file
  512. ### Example user template template
  513. ### Example user template
  514. # IntelliJ project files
  515. *.iml
  516. gen
  517. ### VisualStudio template
  518. ## Ignore Visual Studio temporary files, build results, and
  519. ## files generated by popular Visual Studio add-ons.
  520. ##
  521. ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
  522. # User-specific files
  523. *.rsuser
  524. *.suo
  525. *.user
  526. *.userosscache
  527. *.sln.docstates
  528. # User-specific files (MonoDevelop/Xamarin Studio)
  529. *.userprefs
  530. # Mono auto generated files
  531. mono_crash.*
  532. # Build results
  533. [Dd]ebug/
  534. [Dd]ebugPublic/
  535. [Rr]elease/
  536. [Rr]eleases/
  537. x64/
  538. x86/
  539. [Ww][Ii][Nn]32/
  540. [Aa][Rr][Mm]/
  541. [Aa][Rr][Mm]64/
  542. bld/
  543. [Bb]in/
  544. [Oo]bj/
  545. [Ll]og/
  546. [Ll]ogs/
  547. # Visual Studio 2015/2017 cache/options directory
  548. .vs/
  549. # Uncomment if you have tasks that create the project's static files in wwwroot
  550. #wwwroot/
  551. # Visual Studio 2017 auto generated files
  552. Generated\ Files/
  553. # MSTest test Results
  554. [Tt]est[Rr]esult*/
  555. [Bb]uild[Ll]og.*
  556. # NUnit
  557. *.VisualState.xml
  558. TestResult.xml
  559. nunit-*.xml
  560. # Build Results of an ATL Project
  561. [Dd]ebugPS/
  562. [Rr]eleasePS/
  563. dlldata.c
  564. # Benchmark Results
  565. BenchmarkDotNet.Artifacts/
  566. # .NET Core
  567. project.lock.json
  568. project.fragment.lock.json
  569. artifacts/
  570. # ASP.NET Scaffolding
  571. ScaffoldingReadMe.txt
  572. # StyleCop
  573. StyleCopReport.xml
  574. # Files built by Visual Studio
  575. *_i.c
  576. *_p.c
  577. *_h.h
  578. *.ilk
  579. *.meta
  580. *.obj
  581. *.iobj
  582. *.pch
  583. *.pdb
  584. *.ipdb
  585. *.pgc
  586. *.pgd
  587. *.rsp
  588. *.sbr
  589. *.tlb
  590. *.tli
  591. *.tlh
  592. *.tmp_proj
  593. *_wpftmp.csproj
  594. *.tlog
  595. *.vspscc
  596. *.vssscc
  597. .builds
  598. *.pidb
  599. *.svclog
  600. *.scc
  601. # Chutzpah Test files
  602. _Chutzpah*
  603. # Visual C++ cache files
  604. ipch/
  605. *.aps
  606. *.ncb
  607. *.opendb
  608. *.opensdf
  609. *.sdf
  610. *.cachefile
  611. *.VC.db
  612. *.VC.VC.opendb
  613. # Visual Studio profiler
  614. *.psess
  615. *.vsp
  616. *.vspx
  617. *.sap
  618. # Visual Studio Trace Files
  619. *.e2e
  620. # TFS 2012 Local Workspace
  621. $tf/
  622. # Guidance Automation Toolkit
  623. *.gpState
  624. # ReSharper is a .NET coding add-in
  625. _ReSharper*/
  626. *.[Rr]e[Ss]harper
  627. *.DotSettings.user
  628. # TeamCity is a build add-in
  629. _TeamCity*
  630. # DotCover is a Code Coverage Tool
  631. *.dotCover
  632. # AxoCover is a Code Coverage Tool
  633. .axoCover/*
  634. !.axoCover/settings.json
  635. # Coverlet is a free, cross platform Code Coverage Tool
  636. coverage*.json
  637. coverage*.xml
  638. coverage*.info
  639. # Visual Studio code coverage results
  640. *.coverage
  641. *.coveragexml
  642. # NCrunch
  643. _NCrunch_*
  644. .*crunch*.local.xml
  645. nCrunchTemp_*
  646. # MightyMoose
  647. *.mm.*
  648. AutoTest.Net/
  649. # Web workbench (sass)
  650. .sass-cache/
  651. # Installshield output folder
  652. [Ee]xpress/
  653. # DocProject is a documentation generator add-in
  654. DocProject/buildhelp/
  655. DocProject/Help/*.HxT
  656. DocProject/Help/*.HxC
  657. DocProject/Help/*.hhc
  658. DocProject/Help/*.hhk
  659. DocProject/Help/*.hhp
  660. DocProject/Help/Html2
  661. DocProject/Help/html
  662. # Click-Once directory
  663. publish/
  664. # Publish Web Output
  665. *.[Pp]ublish.xml
  666. *.azurePubxml
  667. # Note: Comment the next line if you want to checkin your web deploy settings,
  668. # but database connection strings (with potential passwords) will be unencrypted
  669. *.pubxml
  670. *.publishproj
  671. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  672. # checkin your Azure Web App publish settings, but sensitive information contained
  673. # in these scripts will be unencrypted
  674. PublishScripts/
  675. # NuGet Packages
  676. *.nupkg
  677. # NuGet Symbol Packages
  678. *.snupkg
  679. # The packages folder can be ignored because of Package Restore
  680. **/[Pp]ackages/*
  681. # except build/, which is used as an MSBuild target.
  682. !**/[Pp]ackages/build/
  683. # Uncomment if necessary however generally it will be regenerated when needed
  684. #!**/[Pp]ackages/repositories.config
  685. # NuGet v3's project.json files produces more ignorable files
  686. *.nuget.props
  687. *.nuget.targets
  688. # Microsoft Azure Build Output
  689. csx/
  690. *.build.csdef
  691. # Microsoft Azure Emulator
  692. ecf/
  693. rcf/
  694. # Windows Store app package directories and files
  695. AppPackages/
  696. BundleArtifacts/
  697. Package.StoreAssociation.xml
  698. _pkginfo.txt
  699. *.appx
  700. *.appxbundle
  701. *.appxupload
  702. # Visual Studio cache files
  703. # files ending in .cache can be ignored
  704. *.[Cc]ache
  705. # but keep track of directories ending in .cache
  706. !?*.[Cc]ache/
  707. # Others
  708. ClientBin/
  709. ~$*
  710. *~
  711. *.dbmdl
  712. *.dbproj.schemaview
  713. *.jfm
  714. *.pfx
  715. *.publishsettings
  716. orleans.codegen.cs
  717. # Including strong name files can present a security risk
  718. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  719. #*.snk
  720. # Since there are multiple workflows, uncomment next line to ignore bower_components
  721. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  722. #bower_components/
  723. # RIA/Silverlight projects
  724. Generated_Code/
  725. # Backup & report files from converting an old project file
  726. # to a newer Visual Studio version. Backup files are not needed,
  727. # because we have git ;-)
  728. _UpgradeReport_Files/
  729. Backup*/
  730. UpgradeLog*.XML
  731. UpgradeLog*.htm
  732. ServiceFabricBackup/
  733. *.rptproj.bak
  734. # SQL Server files
  735. *.mdf
  736. *.ldf
  737. *.ndf
  738. # Business Intelligence projects
  739. *.rdl.data
  740. *.bim.layout
  741. *.bim_*.settings
  742. *.rptproj.rsuser
  743. *- [Bb]ackup.rdl
  744. *- [Bb]ackup ([0-9]).rdl
  745. *- [Bb]ackup ([0-9][0-9]).rdl
  746. # Microsoft Fakes
  747. FakesAssemblies/
  748. # GhostDoc plugin setting file
  749. *.GhostDoc.xml
  750. # Node.js Tools for Visual Studio
  751. .ntvs_analysis.dat
  752. # Visual Studio 6 build log
  753. *.plg
  754. # Visual Studio 6 workspace options file
  755. *.opt
  756. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  757. *.vbw
  758. # Visual Studio 6 auto-generated project file (contains which files were open etc.)
  759. *.vbp
  760. # Visual Studio 6 workspace and project file (working project files containing files to include in project)
  761. *.dsw
  762. *.dsp
  763. # Visual Studio 6 technical files
  764. # Visual Studio LightSwitch build output
  765. **/*.HTMLClient/GeneratedArtifacts
  766. **/*.DesktopClient/GeneratedArtifacts
  767. **/*.DesktopClient/ModelManifest.xml
  768. **/*.Server/GeneratedArtifacts
  769. **/*.Server/ModelManifest.xml
  770. _Pvt_Extensions
  771. # Paket dependency manager
  772. .paket/paket.exe
  773. paket-files/
  774. # FAKE - F# Make
  775. .fake/
  776. # CodeRush personal settings
  777. .cr/personal
  778. # Python Tools for Visual Studio (PTVS)
  779. __pycache__/
  780. *.pyc
  781. # Cake - Uncomment if you are using it
  782. # tools/**
  783. # !tools/packages.config
  784. # Tabs Studio
  785. *.tss
  786. # Telerik's JustMock configuration file
  787. *.jmconfig
  788. # BizTalk build output
  789. *.btp.cs
  790. *.btm.cs
  791. *.odx.cs
  792. *.xsd.cs
  793. # OpenCover UI analysis results
  794. OpenCover/
  795. # Azure Stream Analytics local run output
  796. ASALocalRun/
  797. # MSBuild Binary and Structured Log
  798. *.binlog
  799. # NVidia Nsight GPU debugger configuration file
  800. *.nvuser
  801. # MFractors (Xamarin productivity tool) working folder
  802. .mfractor/
  803. # Local History for Visual Studio
  804. .localhistory/
  805. # Visual Studio History (VSHistory) files
  806. .vshistory/
  807. # BeatPulse healthcheck temp database
  808. healthchecksdb
  809. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  810. MigrationBackup/
  811. # Ionide (cross platform F# VS Code tools) working folder
  812. .ionide/
  813. # Fody - auto-generated XML schema
  814. FodyWeavers.xsd
  815. # VS Code files for those working on multiple tools
  816. *.code-workspace
  817. # Local History for Visual Studio Code
  818. # Windows Installer files from build outputs
  819. # JetBrains Rider
  820. *.sln.iml
  821. ### macOS template
  822. # General
  823. .AppleDouble
  824. .LSOverride
  825. # Icon must end with two \r
  826. Icon
  827. # Thumbnails
  828. ._*
  829. # Files that might appear in the root of a volume
  830. .DocumentRevisions-V100
  831. .fseventsd
  832. .Spotlight-V100
  833. .TemporaryItems
  834. .Trashes
  835. .VolumeIcon.icns
  836. .com.apple.timemachine.donotpresent
  837. # Directories potentially created on remote AFP share
  838. .AppleDB
  839. .AppleDesktop
  840. Network Trash Folder
  841. Temporary Items
  842. .apdisk
  843. ### Intellij+iml template
  844. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  845. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  846. # User-specific stuff
  847. # AWS User-specific
  848. # Generated files
  849. # Sensitive or high-churn files
  850. # Gradle
  851. # Gradle and Maven with auto-import
  852. # When using Gradle or Maven with auto-import, you should exclude module files,
  853. # since they will be recreated, and may cause churn. Uncomment if using
  854. # auto-import.
  855. # .idea/artifacts
  856. # .idea/compiler.xml
  857. # .idea/jarRepositories.xml
  858. # .idea/modules.xml
  859. # .idea/*.iml
  860. # .idea/modules
  861. # *.iml
  862. # *.ipr
  863. # CMake
  864. # Mongo Explorer plugin
  865. # File-based project format
  866. # IntelliJ
  867. # mpeltonen/sbt-idea plugin
  868. # JIRA plugin
  869. # Cursive Clojure plugin
  870. # SonarLint plugin
  871. # Crashlytics plugin (for Android Studio and IntelliJ)
  872. # Editor-based Rest Client
  873. # Android studio 3.1+ serialized cache file