.gitignore 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### Windows template
  3. # Windows thumbnail cache files
  4. Thumbs.db
  5. ehthumbs.db
  6. ehthumbs_vista.db
  7. # Dump file
  8. *.stackdump
  9. # Folder config file
  10. [Dd]esktop.ini
  11. # Recycle Bin used on file shares
  12. $RECYCLE.BIN/
  13. # Windows Installer files
  14. *.cab
  15. *.msi
  16. *.msix
  17. *.msm
  18. *.msp
  19. # Windows shortcuts
  20. *.lnk
  21. ### Linux template
  22. *~
  23. # temporary files which can be created if a process still has a handle open of a deleted file
  24. .fuse_hidden*
  25. # KDE directory preferences
  26. .directory
  27. # Linux trash folder which might appear on any partition or disk
  28. .Trash-*
  29. # .nfs files are created when an open file is removed but is still being accessed
  30. .nfs*
  31. ### Node template
  32. # Logs
  33. logs
  34. *.log
  35. npm-debug.log*
  36. yarn-debug.log*
  37. yarn-error.log*
  38. # Runtime data
  39. pids
  40. *.pid
  41. *.seed
  42. *.pid.lock
  43. # Directory for instrumented libs generated by jscoverage/JSCover
  44. lib-cov
  45. # Coverage directory used by tools like istanbul
  46. coverage
  47. # nyc test coverage
  48. .nyc_output
  49. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  50. .grunt
  51. # Bower dependency directory (https://bower.io/)
  52. bower_components
  53. # node-waf configuration
  54. .lock-wscript
  55. # Compiled binary addons (https://nodejs.org/api/addons.html)
  56. build/Release
  57. # Dependency directories
  58. node_modules/
  59. jspm_packages/
  60. # TypeScript v1 declaration files
  61. typings/
  62. # Optional npm cache directory
  63. .npm
  64. # Optional eslint cache
  65. .eslintcache
  66. # Optional REPL history
  67. .node_repl_history
  68. # Output of 'npm pack'
  69. *.tgz
  70. # Yarn Integrity file
  71. .yarn-integrity
  72. # next.js build output
  73. .next
  74. ### SublimeText template
  75. # Cache files for Sublime Text
  76. *.tmlanguage.cache
  77. *.tmPreferences.cache
  78. *.stTheme.cache
  79. # Workspace files are user-specific
  80. *.sublime-workspace
  81. # Project files should be checked into the repository, unless a significant
  82. # proportion of contributors will probably not be using Sublime Text
  83. # *.sublime-project
  84. # SFTP configuration file
  85. sftp-config.json
  86. # Package control specific files
  87. Package Control.last-run
  88. Package Control.ca-list
  89. Package Control.ca-bundle
  90. Package Control.system-ca-bundle
  91. Package Control.cache/
  92. Package Control.ca-certs/
  93. Package Control.merged-ca-bundle
  94. Package Control.user-ca-bundle
  95. oscrypto-ca-bundle.crt
  96. bh_unicode_properties.cache
  97. # Sublime-github package stores a github token in this file
  98. # https://packagecontrol.io/packages/sublime-github
  99. GitHub.sublime-settings
  100. ### SVN template
  101. .svn/
  102. ### macOS template
  103. # General
  104. .DS_Store
  105. .AppleDouble
  106. .LSOverride
  107. # Icon must end with two \r
  108. Icon
  109. # Thumbnails
  110. ._*
  111. # Files that might appear in the root of a volume
  112. .DocumentRevisions-V100
  113. .fseventsd
  114. .Spotlight-V100
  115. .TemporaryItems
  116. .Trashes
  117. .VolumeIcon.icns
  118. .com.apple.timemachine.donotpresent
  119. # Directories potentially created on remote AFP share
  120. .AppleDB
  121. .AppleDesktop
  122. Network Trash Folder
  123. Temporary Items
  124. .apdisk
  125. ### VisualStudioCode template
  126. .vscode/*
  127. !.vscode/settings.json
  128. !.vscode/tasks.json
  129. !.vscode/launch.json
  130. !.vscode/extensions.json
  131. ### JetBrains template
  132. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  133. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  134. # User-specific stuff
  135. .idea/**/workspace.xml
  136. .idea/**/tasks.xml
  137. .idea/**/dictionaries
  138. .idea/**/shelf
  139. # Sensitive or high-churn files
  140. .idea/**/dataSources/
  141. .idea/**/dataSources.ids
  142. .idea/**/dataSources.local.xml
  143. .idea/**/sqlDataSources.xml
  144. .idea/**/dynamic.xml
  145. .idea/**/uiDesigner.xml
  146. .idea/**/dbnavigator.xml
  147. # Gradle
  148. .idea/**/gradle.xml
  149. .idea/**/libraries
  150. # CMake
  151. cmake-build-debug/
  152. cmake-build-release/
  153. # Mongo Explorer plugin
  154. .idea/**/mongoSettings.xml
  155. # File-based project format
  156. *.iws
  157. # IntelliJ
  158. out/
  159. # mpeltonen/sbt-idea plugin
  160. .idea_modules/
  161. # JIRA plugin
  162. atlassian-ide-plugin.xml
  163. # Cursive Clojure plugin
  164. .idea/replstate.xml
  165. # Crashlytics plugin (for Android Studio and IntelliJ)
  166. com_crashlytics_export_strings.xml
  167. crashlytics.properties
  168. crashlytics-build.properties
  169. fabric.properties
  170. # Editor-based Rest Client
  171. .idea/httpRequests
  172. ### Vim template
  173. # Swap
  174. [._]*.s[a-v][a-z]
  175. [._]*.sw[a-p]
  176. [._]s[a-v][a-z]
  177. [._]sw[a-p]
  178. # Session
  179. Session.vim
  180. # Temporary
  181. .netrwhist
  182. # Auto-generated tag files
  183. tags
  184. # Persistent undo
  185. [._]*.un~
  186. ### custom by project
  187. ## vue cli
  188. /dist
  189. # local env files
  190. .env.local
  191. .env.*.local
  192. # Editor directories and files
  193. *.suo
  194. *.ntvs*
  195. *.njsproj
  196. *.sln