.gitignore 603 B

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