You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 년 전
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. #CLion
  2. .idea
  3. #Kdev
  4. *.kdev*
  5. #
  6. bin
  7. *.swp
  8. # ---> C
  9. # Object files
  10. *.o
  11. *.ko
  12. *.obj
  13. *.elf
  14. # Precompiled Headers
  15. *.gch
  16. *.pch
  17. # Libraries
  18. *.lib
  19. *.a
  20. *.la
  21. *.lo
  22. # Shared objects (inc. Windows DLLs)
  23. *.dll
  24. *.so
  25. *.so.*
  26. *.dylib
  27. # Executables
  28. *.exe
  29. *.out
  30. *.app
  31. *.i*86
  32. *.x86_64
  33. *.hex
  34. # Debug files
  35. *.dSYM/
  36. # ---> C++
  37. # Compiled Object files
  38. *.slo
  39. *.lo
  40. *.o
  41. *.obj
  42. # Precompiled Headers
  43. *.gch
  44. *.pch
  45. # Compiled Dynamic libraries
  46. *.so
  47. *.dylib
  48. *.dll
  49. # Fortran module files
  50. *.mod
  51. # Compiled Static libraries
  52. *.lai
  53. *.la
  54. *.a
  55. *.lib
  56. # Executables
  57. *.exe
  58. *.out
  59. *.app
  60. # ---> Node
  61. # Logs
  62. logs
  63. *.log
  64. npm-debug.log*
  65. # Runtime data
  66. pids
  67. *.pid
  68. *.seed
  69. # Directory for instrumented libs generated by jscoverage/JSCover
  70. lib-cov
  71. # Coverage directory used by tools like istanbul
  72. coverage
  73. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  74. .grunt
  75. # node-waf configuration
  76. .lock-wscript
  77. # Compiled binary addons (http://nodejs.org/api/addons.html)
  78. build/Release
  79. # Dependency directory
  80. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  81. node_modules
  82. # ---> Qt
  83. # C++ objects and libs
  84. *.slo
  85. *.lo
  86. *.o
  87. *.a
  88. *.la
  89. *.lai
  90. *.so
  91. *.dll
  92. *.dylib
  93. # Qt-es
  94. /.qmake.cache
  95. /.qmake.stash
  96. *.pro.user
  97. *.pro.user.*
  98. *.qbs.user
  99. *.qbs.user.*
  100. *.moc
  101. moc_*.cpp
  102. qrc_*.cpp
  103. ui_*.h
  104. Makefile.*
  105. *-build-*
  106. # QtCreator
  107. *.autosave
  108. #QtCtreator Qml
  109. *.qmlproject.user
  110. *.qmlproject.user.*
  111. # ---> Ruby
  112. *.gem
  113. *.rbc
  114. /.config
  115. /coverage/
  116. /InstalledFiles
  117. /pkg/
  118. /spec/reports/
  119. /spec/examples.txt
  120. /test/tmp/
  121. /test/version_tmp/
  122. /tmp/
  123. ## Specific to RubyMotion:
  124. .dat*
  125. .repl_history
  126. build/
  127. ## Documentation cache and generated files:
  128. /.yardoc/
  129. /_yardoc/
  130. /doc/
  131. /rdoc/
  132. ## Environment normalisation:
  133. /.bundle/
  134. /vendor/bundle
  135. /lib/bundler/man/
  136. # for a library or gem, you might want to ignore these files since the code is
  137. # intended to run in multiple environments; otherwise, check them in:
  138. # Gemfile.lock
  139. # .ruby-version
  140. # .ruby-gemset
  141. # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
  142. .rvmrc
  143. # ---> Rust
  144. # Compiled files
  145. *.o
  146. *.so
  147. *.rlib
  148. *.dll
  149. # Executables
  150. *.exe
  151. # Generated by Cargo
  152. /target/
  153. .vs