typescript
Installation
SKILL.md
TypeScript Skill
Rules
Note that these are not hard-and-fast rules. If there's a good reason not to apply a rule, don't apply it.
Alphabetical Order
Maintain alphabetical order for better readability and consistency:
- Function parameters - Order by parameter name
- Object literal fields - Sort by key name
- Type definitions - Arrange fields alphabetically
- Class properties - Order by property name
Example (type definitions):