.gitignore 628 B

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