.gitignore 622 B

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