Add dependency versioning preference to coding standards

This commit is contained in:
Mikkel Georgsen 2026-01-16 14:39:33 +00:00
parent 6357b3499b
commit 444e2adc40

View file

@ -313,6 +313,7 @@ Format as structured JSON.
- **Docstrings:** Required on modules and classes - **Docstrings:** Required on modules and classes
- **Logging:** Use `logging` module, no `print()` in production - **Logging:** Use `logging` module, no `print()` in production
- **Pre-commit:** Enforce ruff and pytest before commits - **Pre-commit:** Enforce ruff and pytest before commits
- **Dependencies:** No pinned versions unless required (e.g., `fastapi` not `fastapi==0.109.0`) - prefer latest for security
### File Structure ### File Structure
``` ```