# Code Style Guidelines

- **Formatting:** Use Prettier (for JS/TS) or standard Laravel formatters (Pint) for PHP.
- **Indentation:** 4 spaces for PHP, 2 spaces for JS/TS/CSS.
- **Line Length:** Max 120 characters per line.
- **Complexity:** Functions should do one thing only. If a function goes over 50 lines, reconsider the design.
- **Comments:** Comment the "why", not the "what". Code should be self-explanatory whenever possible.
