-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.cursorrules
More file actions
24 lines (16 loc) · 777 Bytes
/
.cursorrules
File metadata and controls
24 lines (16 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Cursor AI Rules
## Completion Requirements
Before considering any issue or task completely done, you MUST:
1. **Run linting**: Execute `bash lint` to ensure code quality and style compliance
2. **Run tests**: Execute `bash test` to verify all tests pass
These commands are mandatory and must be executed successfully before marking any work as complete.
## Workflow
1. Make your code changes
2. Run `bash lint` and fix any linting issues
3. Run `bash test` and ensure all tests pass
4. Only then consider the task complete
## Notes
- Both commands must exit with status code 0 (success)
- If either command fails, the issue is NOT complete
- Fix any issues found by these commands before proceeding
- These commands are defined in the project's testing infrastructure