.prettierignore 798 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Dependencies
  2. node_modules
  3. .pnp
  4. .pnp.*
  5. # Build outputs
  6. .next
  7. out
  8. build
  9. dist
  10. *.tsbuildinfo
  11. # Logs
  12. logs
  13. *.log
  14. npm-debug.log*
  15. yarn-debug.log*
  16. yarn-error.log*
  17. .bun-debug.log*
  18. # Environment files
  19. .env*
  20. !.env.example
  21. # Database migrations (generated)
  22. drizzle
  23. # External UI components (shadcn - do not format)
  24. src/components/ui
  25. # Docker volumes
  26. data
  27. # IDE and tooling
  28. .cursor
  29. .claude
  30. .serena
  31. .idea
  32. .specify
  33. .vscode
  34. .DS_Store
  35. # Version control
  36. .git
  37. .gitignore
  38. # GitHub Actions workflows (YAML formatting conflicts)
  39. .github/workflows
  40. # Seed data (large auto-generated JSON files)
  41. public/seed/litellm-prices.json
  42. # Documentation (preserve manual formatting)
  43. CHANGELOG.md
  44. # Package manager
  45. bun.lock
  46. package-lock.json
  47. yarn.lock
  48. # Other
  49. coverage
  50. .vercel
  51. *.pem
  52. # Documentation submodule
  53. docs-site