.gitignore 564 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. *.swp
  2. *.gdb_history
  3. # LSP
  4. .cache
  5. compile_commands.json
  6. # JetBrains IDEs
  7. .idea/
  8. # Python VirtEnvironments
  9. .env
  10. .venv
  11. env/
  12. venv/
  13. # Python Byte-compiled / optimized files
  14. __pycache__/
  15. *.py[cod]
  16. *$py.class
  17. *.pickle
  18. .obj/
  19. bindings/
  20. .DS_Store
  21. .mxproject
  22. Brewfile.lock.json
  23. # Visual Studio Code
  24. .vscode/
  25. # legendary cmake's
  26. build
  27. CMakeLists.txt
  28. # bundle output
  29. dist
  30. # kde
  31. .directory
  32. # SCons
  33. .sconsign.dblite
  34. # SCons build dir
  35. build/
  36. # Toolchain
  37. /toolchain
  38. # openocd output file
  39. openocd.log
  40. # PVS Studio temporary files
  41. .PVS-Studio/
  42. PVS-Studio.log
  43. .gdbinit