.gitignore 597 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. # Kate
  26. .kateproject
  27. .kateconfig
  28. # legendary cmake's
  29. build
  30. CMakeLists.txt
  31. # bundle output
  32. dist
  33. # kde
  34. .directory
  35. # SCons
  36. .sconsign.dblite
  37. # SCons build dir
  38. build/
  39. # Toolchain
  40. /toolchain
  41. # openocd output file
  42. openocd.log
  43. # PVS Studio temporary files
  44. .PVS-Studio/
  45. PVS-Studio.log
  46. .gdbinit