Description
Add the ability to sort tasks by their deadline date.
Tasks
- Add sort option to list command
- Implement deadline-based sorting in SQL query
Details
- Add new parameter to
list command in cli.py
- Use SQLite's ORDER BY with NULLS LAST for tasks without deadlines
- Example:
ORDER BY deadline NULLS LAST
Description
Add the ability to sort tasks by their deadline date.
Tasks
Details
listcommand incli.pyORDER BY deadline NULLS LAST