You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cursor(rules[dev-loop]): Format, Test, then Typecheck and Lint
why: Reordering development workflow prioritizes code correctness over style conformance. This prevents wasting time fixing linting/typing issues in code that may still need substantial changes based on test results. Ensures developers focus on getting functionality correct first before polishing.
what:
- Restructured development workflow to prioritize formatting and test correctness first
- Moved linting and type checking to occur after initial tests pass
- Added explicit verification of tests after linting/type fixes
- Established clear commit points in the workflow (after initial tests and after linting)
- Added numbered steps for clearer process flow
- Improved section headers and organization for better readability
- Maintained requirement to fix failures at each step before proceeding
refs: Supports improved developer workflow efficiency and reduces unnecessary rework
0 commit comments