.gitignore 632 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Build directories
  2. build/
  3. cmake-build-*/
  4. out/
  5. # CMake
  6. CMakeCache.txt
  7. CMakeFiles/
  8. cmake_install.cmake
  9. Makefile
  10. *.cmake
  11. !CMakeLists.txt
  12. # Compiled files
  13. *.o
  14. *.a
  15. *.so
  16. *.dylib
  17. *.dll
  18. *.exe
  19. # IDE
  20. .vscode/
  21. .idea/
  22. *.swp
  23. *.swo
  24. *~
  25. .DS_Store
  26. # Compilation database
  27. compile_commands.json
  28. # Nix
  29. result
  30. result-*
  31. # Ccache
  32. .ccache/
  33. # Debug and temporary files
  34. *.log
  35. lumacs_debug*.log
  36. *_debug.log
  37. # Test files (use examples/ for committed test files)
  38. test_*.txt
  39. test_*.lua
  40. test_*.cpp
  41. test_*.sh
  42. verify_*.lua
  43. # Claude AI assistant files
  44. .claude/
  45. .cache/
  46. # Temporary directories
  47. temporary/
  48. temp/
  49. # Editor backup files
  50. *.bak
  51. *.backup
  52. *.orig