.gitignore 639 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. lumacs
  20. # IDE
  21. .vscode/
  22. .idea/
  23. *.swp
  24. *.swo
  25. *~
  26. .DS_Store
  27. # Compilation database
  28. compile_commands.json
  29. # Nix
  30. result
  31. result-*
  32. # Ccache
  33. .ccache/
  34. # Debug and temporary files
  35. *.log
  36. lumacs_debug*.log
  37. *_debug.log
  38. # Test files (use examples/ for committed test files)
  39. test_*.txt
  40. test_*.lua
  41. test_*.cpp
  42. test_*.sh
  43. verify_*.lua
  44. # Claude AI assistant files
  45. .claude/
  46. .cache/
  47. # Temporary directories
  48. temporary/
  49. temp/
  50. # Editor backup files
  51. *.bak
  52. *.backup
  53. *.orig