.gitignore 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. # Global gitignore
  2. #
  3. # Windows gitignore
  4. #
  5. # Windows thumbnail cache files
  6. Thumbs.db
  7. ehthumbs.db
  8. ehthumbs_vista.db
  9. # Dump file
  10. *.stackdump
  11. # Folder config file
  12. Desktop.ini
  13. # Recycle Bin used on file shares
  14. $RECYCLE.BIN/
  15. # Windows Installer files
  16. *.cab
  17. *.msi
  18. *.msm
  19. *.msp
  20. # Windows shortcuts
  21. *.lnk
  22. #
  23. # macOS gitignore
  24. #
  25. # General
  26. *.DS_Store
  27. .AppleDouble
  28. .LSOverride
  29. # Icon must end with two \r
  30. Icon
  31. # Thumbnails
  32. ._*
  33. # Files that might appear in the root of a volume
  34. .DocumentRevisions-V100
  35. .fseventsd
  36. .Spotlight-V100
  37. .TemporaryItems
  38. .Trashes
  39. .VolumeIcon.icns
  40. .com.apple.timemachine.donotpresent
  41. # Directories potentially created on remote AFP share
  42. .AppleDB
  43. .AppleDesktop
  44. Network Trash Folder
  45. Temporary Items
  46. .apdisk
  47. #
  48. # Node gitignore
  49. #
  50. # Logs
  51. logs
  52. *.log
  53. npm-debug.log*
  54. yarn-debug.log*
  55. yarn-error.log*
  56. # Runtime data
  57. pids
  58. *.pid
  59. *.seed
  60. *.pid.lock
  61. # Directory for instrumented libs generated by jscoverage/JSCover
  62. lib-cov
  63. # Coverage directory used by tools like istanbul
  64. coverage
  65. # nyc test coverage
  66. .nyc_output
  67. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  68. .grunt
  69. # Bower dependency directory (https://bower.io/)
  70. bower_components
  71. # node-waf configuration
  72. .lock-wscript
  73. # Compiled binary addons (https://nodejs.org/api/addons.html)
  74. build/Release
  75. # Dependency directories
  76. node_modules/
  77. jspm_packages/
  78. # Typescript v1 declaration files
  79. typings/
  80. # Optional npm cache directory
  81. .npm
  82. # Optional eslint cache
  83. .eslintcache
  84. # Optional REPL history
  85. .node_repl_history
  86. # Output of 'npm pack'
  87. *.tgz
  88. # Yarn Integrity file
  89. .yarn-integrity
  90. # dotenv environment variables file
  91. .env
  92. #
  93. # Sass gitignore
  94. #
  95. .sass-cache
  96. *.css.map
  97. #
  98. # Atom gitignore
  99. #
  100. .ftpconfig
  101. #
  102. # Dreamweaver gitignore
  103. #
  104. # DW Dreamweaver added files
  105. _notes
  106. _compareTemp
  107. configs/
  108. dwsync.xml
  109. dw_php_codehinting.config
  110. *.mno
  111. #
  112. # Notepad++ gitignore
  113. #
  114. # Notepad++ backups #
  115. *.bak
  116. #
  117. # Sublime Text gitignore
  118. #
  119. # Cache files for Sublime Text
  120. *.tmlanguage.cache
  121. *.tmPreferences.cache
  122. *.stTheme.cache
  123. # Workspace files are user-specific
  124. *.sublime-workspace
  125. # Project files should be checked into the repository, unless a significant
  126. # proportion of contributors will probably not be using Sublime Text
  127. # *.sublime-project
  128. # SFTP configuration file
  129. sftp-config.json
  130. # Package control specific files
  131. Package Control.last-run
  132. Package Control.ca-list
  133. Package Control.ca-bundle
  134. Package Control.system-ca-bundle
  135. Package Control.cache/
  136. Package Control.ca-certs/
  137. Package Control.merged-ca-bundle
  138. Package Control.user-ca-bundle
  139. oscrypto-ca-bundle.crt
  140. bh_unicode_properties.cache
  141. # Sublime-github package stores a github token in this file
  142. # https://packagecontrol.io/packages/sublime-github
  143. GitHub.sublime-settings
  144. #
  145. # Visual Studio Code gitignore
  146. #
  147. .vscode/*
  148. !.vscode/settings.json
  149. !.vscode/tasks.json
  150. !.vscode/launch.json
  151. !.vscode/extensions.json
  152. #
  153. # Project gitignore
  154. #
  155. /dist