.gitignore 459 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Don't commit binaries
  2. *.a
  3. *.asm
  4. *.dll
  5. *.dylib
  6. *.exe
  7. *.lib
  8. *.out
  9. *.o
  10. *.so
  11. *.so.*
  12. # Exclude editor config
  13. .vscode/
  14. .vs/
  15. # Exclude temporary folders
  16. *.egg-info/
  17. build/
  18. build_cmake/
  19. python/dist/
  20. doc/_build
  21. # Exclude macOS folder attributes
  22. .DS_Store
  23. # Exclude macOS Info.framework.plist
  24. Info.framework.plist
  25. # Python byte-compiled / optimized / DLL files
  26. __pycache__/
  27. *.py[cod]
  28. *$py.class
  29. # MuJoCo's default log file
  30. MUJOCO_LOG.TXT
  31. # Clang cache
  32. .cache/