.gitignore 589 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
  2. # dependencies
  3. node_modules/
  4. .claude/
  5. # Expo
  6. .expo/
  7. dist/
  8. web-build/
  9. expo-env.d.ts
  10. # Native
  11. .kotlin/
  12. *.orig.*
  13. *.jks
  14. *.p8
  15. *.p12
  16. *.key
  17. *.mobileprovision
  18. # Metro
  19. .metro-health-check*
  20. # debug
  21. npm-debug.*
  22. yarn-debug.*
  23. yarn-error.*
  24. # macOS
  25. .DS_Store
  26. *.pem
  27. # local env files
  28. .env*.local
  29. # typescript
  30. *.tsbuildinfo
  31. # generated native folders
  32. /ios
  33. /android
  34. /assets
  35. /www
  36. /index.html
  37. /AGENTS.md
  38. /CLAUDE.md
  39. /LICENSE
  40. # local UI verification artifacts
  41. /*.png
  42. /*.mp4
  43. /*.xml
  44. /task-switch-check/
  45. /.idea/