.gitignore 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # ---> C
  2. # Object files
  3. *.o
  4. *.ko
  5. *.obj
  6. *.elf
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Libraries
  11. *.lib
  12. *.a
  13. *.la
  14. *.lo
  15. # Shared objects (inc. Windows DLLs)
  16. *.dll
  17. *.so
  18. *.so.*
  19. *.dylib
  20. # Executables
  21. *.exe
  22. *.out
  23. *.app
  24. *.i*86
  25. *.x86_64
  26. *.hex
  27. # Debug files
  28. *.dSYM/
  29. # ---> C++
  30. # Compiled Object files
  31. *.slo
  32. *.lo
  33. *.o
  34. *.obj
  35. # Precompiled Headers
  36. *.gch
  37. *.pch
  38. # Compiled Dynamic libraries
  39. *.so
  40. *.dylib
  41. *.dll
  42. # Fortran module files
  43. *.mod
  44. # Compiled Static libraries
  45. *.lai
  46. *.la
  47. *.a
  48. *.lib
  49. # Executables
  50. *.exe
  51. *.out
  52. *.app
  53. # ---> Node
  54. # Logs
  55. logs
  56. *.log
  57. npm-debug.log*
  58. # Runtime data
  59. pids
  60. *.pid
  61. *.seed
  62. # Directory for instrumented libs generated by jscoverage/JSCover
  63. lib-cov
  64. # Coverage directory used by tools like istanbul
  65. coverage
  66. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  67. .grunt
  68. # node-waf configuration
  69. .lock-wscript
  70. # Compiled binary addons (http://nodejs.org/api/addons.html)
  71. build/Release
  72. # Dependency directory
  73. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  74. node_modules