When importing from cursor using npx rulesync import --cursor I notice that descriptions get lost when a globs is specified in the Cursor rules:
Cursor:
---
description: Entity Framework Core Standards
globs: *.cs
alwaysApply: false
---
Becomes:
---
root: false
targets:
- '*'
description: ''
globs:
- '*.cs'
cursorRuleType: specificFiles
---
Notice the empty description.
However, this works:
---
description: Integration test instructions
globs:
alwaysApply: false
---
---
root: false
targets:
- '*'
description: Integration test instructions
globs: []
cursorRuleType: intelligently
---
When importing from cursor using
npx rulesync import --cursorI notice that descriptions get lost when aglobsis specified in the Cursor rules:Cursor:
Becomes:
Notice the empty description.
However, this works: