.gitignore 845 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # ---> Vim
  2. [._]*.s[a-w][a-z]
  3. [._]s[a-w][a-z]
  4. *.un~
  5. Session.vim
  6. .netrwhist
  7. *~
  8. # ---> OpenSCAD
  9. *.stl
  10. *.dxf
  11. # ---> KiCAD
  12. # For PCBs designed using KiCAD: http://www.kicad-pcb.org/
  13. # Temporary files
  14. *.000
  15. *.bak
  16. *.bck
  17. *.kicad_pcb-bak
  18. *.zip
  19. # Netlist files (exported from Eeschema)
  20. *.net
  21. # Autorouter files (exported from Pcbnew)
  22. .dsn
  23. # ---> C
  24. # Object files
  25. *.o
  26. *.ko
  27. *.obj
  28. *.elf
  29. # Precompiled Headers
  30. *.gch
  31. *.pch
  32. # Libraries
  33. *.lib
  34. *.a
  35. *.la
  36. *.lo
  37. # Shared objects (inc. Windows DLLs)
  38. *.dll
  39. *.so
  40. *.so.*
  41. *.dylib
  42. # Executables
  43. *.exe
  44. *.out
  45. *.app
  46. *.i*86
  47. *.x86_64
  48. *.hex
  49. # Debug files
  50. *.dSYM/
  51. # ---> C++
  52. # Compiled Object files
  53. *.slo
  54. *.lo
  55. *.o
  56. *.obj
  57. # Precompiled Headers
  58. *.gch
  59. *.pch
  60. # Compiled Dynamic libraries
  61. *.so
  62. *.dylib
  63. *.dll
  64. # Fortran module files
  65. *.mod
  66. # Compiled Static libraries
  67. *.lai
  68. *.la
  69. *.a
  70. *.lib
  71. # Executables
  72. *.exe
  73. *.out
  74. *.app