From 1e47e4d8929f47510ca1aa2ac21cb56193ad8943 Mon Sep 17 00:00:00 2001 From: Craig Date: Tue, 15 Apr 2025 15:52:19 +0100 Subject: [PATCH] Add development workflow guidelines: introduce new rules for task progression, testing, and code refactoring to enhance development practices. --- .../.cursor/rules/development_workflow.mdc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 frontend/vite-template-master/.cursor/rules/development_workflow.mdc diff --git a/frontend/vite-template-master/.cursor/rules/development_workflow.mdc b/frontend/vite-template-master/.cursor/rules/development_workflow.mdc new file mode 100644 index 0000000..7b5778d --- /dev/null +++ b/frontend/vite-template-master/.cursor/rules/development_workflow.mdc @@ -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. \ No newline at end of file