Add development workflow guidelines: introduce new rules for task progression, testing, and code refactoring to enhance development practices.

This commit is contained in:
Craig
2025-04-15 15:52:19 +01:00
parent 884ca29046
commit 1e47e4d892

View File

@@ -0,0 +1,11 @@
---
description:
globs:
alwaysApply: true
---
Rule Name: development_workflow.mdc
Description:
- Do not move on to the next step of a task until user has confirmed the previous stage is finished. Pause occasionally and ask the user to accept changes.
- Run tests after changing code functionality.
- Use TDD principles where applicable.
- Before implementing code, consider if it is worth refactoring any code in the working area to be more clean, modular, and readable.