1
0

.gitignore 3.5 KB

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