.gitignore 561 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. null.d
  33. # SCons
  34. .sconsign.dblite
  35. # SCons build dir
  36. build/
  37. # Toolchain
  38. /toolchain
  39. # openocd output file
  40. openocd.log
  41. # PVS Studio temporary files
  42. .PVS-Studio/
  43. PVS-Studio.log