.gitignore 714 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # Dependencies
  2. node_modules/
  3. # Build output
  4. dist/
  5. # Environment files
  6. .env
  7. .env.local
  8. .env.*.local
  9. .ignore
  10. # Editor/IDE
  11. .vscode/
  12. .idea/
  13. *.swp
  14. *.swo
  15. *~
  16. # OS files
  17. .DS_Store
  18. Thumbs.db
  19. # Logs
  20. *.log
  21. npm-debug.log*
  22. yarn-debug.log*
  23. yarn-error.log*
  24. # TypeScript cache
  25. *.tsbuildinfo
  26. # Test coverage
  27. coverage/
  28. # Temporary files
  29. tmp/
  30. temp/
  31. local
  32. .sisyphus/
  33. .hive/
  34. .opencode/
  35. .claude/
  36. .ignore
  37. opencode
  38. oh-my-opencode
  39. opencode.jsonc
  40. # AI Memory
  41. .aim/
  42. # Planning docs (not for commit)
  43. TIMEOUT_PLAN.md
  44. GOAL.md
  45. PR-NOTES.md
  46. REVIEW.md
  47. # Python
  48. __pycache__/
  49. *.py[cod]
  50. *$py.class
  51. *.so
  52. .Python
  53. env/
  54. build/
  55. develop-eggs/
  56. dist/
  57. downloads/
  58. eggs/
  59. .eggs/
  60. lib/
  61. lib64/
  62. parts/
  63. sdist/
  64. var/
  65. wheels/
  66. *.egg-info/
  67. .installed.cfg
  68. *.egg