.gitignore 925 B

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