.gitignore 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. # #########################################################
  2. # Global/Backup.gitignore
  3. # #####################################
  4. *.bak
  5. *.gho
  6. *.ori
  7. *.orig
  8. *.tmp
  9. # #########################################################
  10. # Global/Diff.gitignore
  11. # #####################################
  12. *.patch
  13. *.diff
  14. # #########################################################
  15. # Global/CVS.gitignore
  16. # #####################################
  17. /CVS/*
  18. **/CVS/*
  19. .cvsignore
  20. */.cvsignore
  21. # #########################################################
  22. # Global/SVN.gitignore
  23. # #####################################
  24. .svn/
  25. # #########################################################
  26. # Global/TortoiseGit.gitignore
  27. # #####################################
  28. # Project-level settings
  29. /.tgitconfig
  30. # #########################################################
  31. # Global/Linux.gitignore
  32. # #####################################
  33. *~
  34. # temporary files which can be created if a process still has a handle open of a deleted file
  35. .fuse_hidden*
  36. # KDE directory preferences
  37. .directory
  38. # Linux trash folder which might appear on any partition or disk
  39. .Trash-*
  40. # .nfs files are created when an open file is removed but is still being accessed
  41. .nfs*
  42. # #########################################################
  43. # Global/macOS.gitignore
  44. # #####################################
  45. # General
  46. .DS_Store
  47. .AppleDouble
  48. .LSOverride
  49. # Icon must end with two \r
  50. Icon
  51. # Thumbnails
  52. ._*
  53. # Files that might appear in the root of a volume
  54. .DocumentRevisions-V100
  55. .fseventsd
  56. .Spotlight-V100
  57. .TemporaryItems
  58. .Trashes
  59. .VolumeIcon.icns
  60. .com.apple.timemachine.donotpresent
  61. # Directories potentially created on remote AFP share
  62. .AppleDB
  63. .AppleDesktop
  64. Network Trash Folder
  65. Temporary Items
  66. .apdisk
  67. # #########################################################
  68. # Global/Windows.gitignore
  69. # #####################################
  70. # Windows thumbnail cache files
  71. Thumbs.db
  72. Thumbs.db:encryptable
  73. ehthumbs.db
  74. ehthumbs_vista.db
  75. # Dump file
  76. *.stackdump
  77. # Folder config file
  78. [Dd]esktop.ini
  79. # Recycle Bin used on file shares
  80. $RECYCLE.BIN/
  81. # Windows Installer files
  82. *.cab
  83. *.msi
  84. *.msix
  85. *.msm
  86. *.msp
  87. # Windows shortcuts
  88. *.lnk
  89. # #########################################################
  90. # Global/VisualStudioCode.gitignore
  91. # #####################################
  92. .vscode/*
  93. !.vscode/settings.json
  94. !.vscode/tasks.json
  95. !.vscode/launch.json
  96. !.vscode/extensions.json
  97. *.code-workspace
  98. # Local History for Visual Studio Code
  99. .history/
  100. # #########################################################
  101. # Global/Vim.gitignore
  102. # #####################################
  103. # Swap
  104. [._]*.s[a-v][a-z]
  105. !*.svg # comment out if you don't need vector files
  106. [._]*.sw[a-p]
  107. [._]s[a-rt-v][a-z]
  108. [._]ss[a-gi-z]
  109. [._]sw[a-p]
  110. # Session
  111. Session.vim
  112. Sessionx.vim
  113. # Temporary
  114. .netrwhist
  115. *~
  116. # Auto-generated tag files
  117. tags
  118. # Persistent undo
  119. [._]*.un~
  120. # #########################################################
  121. # Node.gitignore
  122. # ##################
  123. # Logs
  124. logs
  125. *.log
  126. npm-debug.log*
  127. yarn-debug.log*
  128. yarn-error.log*
  129. lerna-debug.log*
  130. .pnpm-debug.log*
  131. # Diagnostic reports (https://nodejs.org/api/report.html)
  132. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  133. # Runtime data
  134. pids
  135. *.pid
  136. *.seed
  137. *.pid.lock
  138. # Directory for instrumented libs generated by jscoverage/JSCover
  139. lib-cov
  140. # Coverage directory used by tools like istanbul
  141. coverage
  142. *.lcov
  143. # nyc test coverage
  144. .nyc_output
  145. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  146. .grunt
  147. # Bower dependency directory (https://bower.io/)
  148. bower_components
  149. # node-waf configuration
  150. .lock-wscript
  151. # Compiled binary addons (https://nodejs.org/api/addons.html)
  152. build/Release
  153. # Dependency directories
  154. node_modules/
  155. jspm_packages/
  156. # Snowpack dependency directory (https://snowpack.dev/)
  157. web_modules/
  158. # TypeScript cache
  159. *.tsbuildinfo
  160. # Optional npm cache directory
  161. .npm
  162. # Optional eslint cache
  163. .eslintcache
  164. # Microbundle cache
  165. .rpt2_cache/
  166. .rts2_cache_cjs/
  167. .rts2_cache_es/
  168. .rts2_cache_umd/
  169. # Optional REPL history
  170. .node_repl_history
  171. # Output of 'npm pack'
  172. *.tgz
  173. # Yarn Integrity file
  174. .yarn-integrity
  175. # dotenv environment variables file
  176. .env
  177. .env.test
  178. .env.production
  179. # parcel-bundler cache (https://parceljs.org/)
  180. .cache
  181. .parcel-cache
  182. # Next.js build output
  183. .next
  184. out
  185. # Nuxt.js build / generate output
  186. .nuxt
  187. dist
  188. # Gatsby files
  189. .cache/
  190. # Comment in the public line in if your project uses Gatsby and not Next.js
  191. # https://nextjs.org/blog/next-9-1#public-directory-support
  192. # public
  193. # vuepress build output
  194. .vuepress/dist
  195. # Serverless directories
  196. .serverless/
  197. # FuseBox cache
  198. .fusebox/
  199. # DynamoDB Local files
  200. .dynamodb/
  201. # TernJS port file
  202. .tern-port
  203. # Stores VSCode versions used for testing VSCode extensions
  204. .vscode-test
  205. # yarn v2
  206. .yarn/cache
  207. .yarn/unplugged
  208. .yarn/build-state.yml
  209. .yarn/install-state.gz
  210. .pnp.*
  211. # #########################################################
  212. # User Custom
  213. # ########