.gitignore 814 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. # ---> KiCAD
  30. # For PCBs designed using KiCAD: http://www.kicad-pcb.org/
  31. # Temporary files
  32. *.000
  33. *.bak
  34. *.bck
  35. *.kicad_pcb-bak
  36. # Netlist files (exported from Eeschema)
  37. *.net
  38. # Autorouter files (exported from Pcbnew)
  39. .dsn
  40. # ---> Lua
  41. # Compiled Lua sources
  42. luac.out
  43. # luarocks build files
  44. *.src.rock
  45. *.zip
  46. *.tar.gz
  47. # Object files
  48. *.o
  49. *.os
  50. *.ko
  51. *.obj
  52. *.elf
  53. # Precompiled Headers
  54. *.gch
  55. *.pch
  56. # Libraries
  57. *.lib
  58. *.a
  59. *.la
  60. *.lo
  61. *.def
  62. *.exp
  63. # Shared objects (inc. Windows DLLs)
  64. *.dll
  65. *.so
  66. *.so.*
  67. *.dylib
  68. # Executables
  69. *.exe
  70. *.out
  71. *.app
  72. *.i*86
  73. *.x86_64
  74. *.hex