.gitignore 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. # Created by https://www.toptal.com/developers/gitignore/api/node
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=node
  3. ### Node ###
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. lerna-debug.log*
  11. # Diagnostic reports (https://nodejs.org/api/report.html)
  12. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  13. # Runtime data
  14. pids
  15. *.pid
  16. *.seed
  17. *.pid.lock
  18. # Directory for instrumented libs generated by jscoverage/JSCover
  19. lib-cov
  20. # Coverage directory used by tools like istanbul
  21. coverage
  22. *.lcov
  23. # nyc test coverage
  24. .nyc_output
  25. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  26. .grunt
  27. # Bower dependency directory (https://bower.io/)
  28. bower_components
  29. # node-waf configuration
  30. .lock-wscript
  31. # Compiled binary addons (https://nodejs.org/api/addons.html)
  32. build/Release
  33. # Dependency directories
  34. node_modules/
  35. jspm_packages/
  36. # TypeScript v1 declaration files
  37. typings/
  38. # TypeScript cache
  39. *.tsbuildinfo
  40. # Optional npm cache directory
  41. .npm
  42. # Optional eslint cache
  43. .eslintcache
  44. # Microbundle cache
  45. .rpt2_cache/
  46. .rts2_cache_cjs/
  47. .rts2_cache_es/
  48. .rts2_cache_umd/
  49. # Optional REPL history
  50. .node_repl_history
  51. # Output of 'npm pack'
  52. *.tgz
  53. # Yarn Integrity file
  54. .yarn-integrity
  55. # dotenv environment variables file
  56. .env
  57. .env.test
  58. # parcel-bundler cache (https://parceljs.org/)
  59. .cache
  60. # Next.js build output
  61. .next
  62. # Nuxt.js build / generate output
  63. .nuxt
  64. dist
  65. # Gatsby files
  66. .cache/
  67. # Comment in the public line in if your project uses Gatsby and not Next.js
  68. # https://nextjs.org/blog/next-9-1#public-directory-support
  69. # public
  70. # vuepress build output
  71. .vuepress/dist
  72. # Serverless directories
  73. .serverless/
  74. # FuseBox cache
  75. .fusebox/
  76. # DynamoDB Local files
  77. .dynamodb/
  78. # TernJS port file
  79. .tern-port
  80. # Stores VSCode versions used for testing VSCode extensions
  81. .vscode-test
  82. # End of https://www.toptal.com/developers/gitignore/api/node
  83. # Created by https://www.toptal.com/developers/gitignore/api/macos
  84. # Edit at https://www.toptal.com/developers/gitignore?templates=macos
  85. ### macOS ###
  86. # General
  87. .DS_Store
  88. .AppleDouble
  89. .LSOverride
  90. # Icon must end with two
  91. Icon
  92. # Thumbnails
  93. ._*
  94. # Files that might appear in the root of a volume
  95. .DocumentRevisions-V100
  96. .fseventsd
  97. .Spotlight-V100
  98. .TemporaryItems
  99. .Trashes
  100. .VolumeIcon.icns
  101. .com.apple.timemachine.donotpresent
  102. # Directories potentially created on remote AFP share
  103. .AppleDB
  104. .AppleDesktop
  105. Network Trash Folder
  106. Temporary Items
  107. .apdisk
  108. ### macOS Patch ###
  109. # iCloud generated files
  110. *.icloud
  111. # End of https://www.toptal.com/developers/gitignore/api/macos
  112. # Created by https://www.toptal.com/developers/gitignore/api/windows
  113. # Edit at https://www.toptal.com/developers/gitignore?templates=windows
  114. ### Windows ###
  115. # Windows thumbnail cache files
  116. Thumbs.db
  117. Thumbs.db:encryptable
  118. ehthumbs.db
  119. ehthumbs_vista.db
  120. # Dump file
  121. *.stackdump
  122. # Folder config file
  123. [Dd]esktop.ini
  124. # Recycle Bin used on file shares
  125. $RECYCLE.BIN/
  126. # Windows Installer files
  127. *.cab
  128. *.msi
  129. *.msix
  130. *.msm
  131. *.msp
  132. # Windows shortcuts
  133. *.lnk
  134. # End of https://www.toptal.com/developers/gitignore/api/windows
  135. #Added by cargo
  136. /target
  137. Cargo.lock
  138. .pnp.*
  139. .yarn/*
  140. !.yarn/patches
  141. !.yarn/plugins
  142. !.yarn/releases
  143. !.yarn/sdks
  144. !.yarn/versions
  145. *.node
  146. # Generated
  147. index.d.ts
  148. index.js