.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. # Netlist files (exported from Eeschema)
  9. *.net
  10. # Autorouter files (exported from Pcbnew)
  11. .dsn
  12. # ---> Python
  13. # Byte-compiled / optimized / DLL files
  14. __pycache__/
  15. *.py[cod]
  16. *$py.class
  17. # C extensions
  18. *.so
  19. # Distribution / packaging
  20. .Python
  21. env/
  22. build/
  23. develop-eggs/
  24. dist/
  25. downloads/
  26. eggs/
  27. .eggs/
  28. lib/
  29. lib64/
  30. parts/
  31. sdist/
  32. var/
  33. *.egg-info/
  34. .installed.cfg
  35. *.egg
  36. # PyInstaller
  37. # Usually these files are written by a python script from a template
  38. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  39. *.manifest
  40. *.spec
  41. # Installer logs
  42. pip-log.txt
  43. pip-delete-this-directory.txt
  44. # Unit test / coverage reports
  45. htmlcov/
  46. .tox/
  47. .coverage
  48. .coverage.*
  49. .cache
  50. nosetests.xml
  51. coverage.xml
  52. *,cover
  53. # Translations
  54. *.mo
  55. *.pot
  56. # Django stuff:
  57. *.log
  58. # Sphinx documentation
  59. docs/_build/
  60. # PyBuilder
  61. target/
  62. # ---> C++
  63. # Compiled Object files
  64. *.slo
  65. *.lo
  66. *.o
  67. *.obj
  68. # Precompiled Headers
  69. *.gch
  70. *.pch
  71. # Compiled Dynamic libraries
  72. *.so
  73. *.dylib
  74. *.dll
  75. # Fortran module files
  76. *.mod
  77. # Compiled Static libraries
  78. *.lai
  79. *.la
  80. *.a
  81. *.lib
  82. # Executables
  83. *.exe
  84. *.out
  85. *.app
  86. # ---> C
  87. # Object files
  88. *.o
  89. *.ko
  90. *.obj
  91. *.elf
  92. # Precompiled Headers
  93. *.gch
  94. *.pch
  95. # Libraries
  96. *.lib
  97. *.a
  98. *.la
  99. *.lo
  100. # Shared objects (inc. Windows DLLs)
  101. *.dll
  102. *.so
  103. *.so.*
  104. *.dylib
  105. # Executables
  106. *.exe
  107. *.out
  108. *.app
  109. *.i*86
  110. *.x86_64
  111. *.hex
  112. # Debug files
  113. *.dSYM/