## Description
Introduced a new directory for cursor-specific rules and behaviors,
including commit message guidelines and workspace rules for derived
files and Cypress tests. This enhances the consistency and clarity of
our development practices.
Fixes #`Issue Number`
_or_
Fixes `Issue URL`
> [!WARNING]
> _If no issue exists, please create an issue first, and check with the
maintainers if the issue is valid._
## Automation
/ok-to-test tags=""
### 🔍 Cypress test results
<!-- This is an auto-generated comment: Cypress test results -->
> [!CAUTION]
> If you modify the content in this section, you are likely to disrupt
the CI result for your PR.
<!-- end of auto-generated comment: Cypress test results -->
## Communication
Should the DevRel and Marketing teams inform users about this change?
- [ ] Yes
- [ ] No
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
- **Documentation**
- Expanded project guidelines to clarify best practices for team
communications, workspace organization, and testing procedures—enhancing
internal coordination and overall product quality.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
28 lines
566 B
Markdown
28 lines
566 B
Markdown
# Cursor Rules
|
|
|
|
This directory contains configuration for cursor-specific rules and behaviors.
|
|
|
|
## Commit Message Rules
|
|
|
|
- Messages must be concise and single-line
|
|
- Must start with a verb (e.g., adds, removes, updates)
|
|
- For significant changes:
|
|
|
|
```
|
|
Heading
|
|
|
|
Detailed description
|
|
```
|
|
|
|
## Workspace Rules
|
|
|
|
### Derived Files
|
|
|
|
- Use `/*** */` for comments instead of `//`
|
|
|
|
### Cypress Tests
|
|
|
|
- Run command: `yarn cypress run --browser chrome --headless --spec {fileName}`
|
|
- Execute from: `app/client` directory
|
|
- File paths should be relative to `app/client`
|