.gitignore 3.8 KB

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