| 1 | --- |
| 2 | title: Rule Title Here |
| 3 | impact: MEDIUM |
| 4 | impactDescription: Optional description of impact (e.g., "20-50% improvement") |
| 5 | tags: tag1, tag2 |
| 6 | --- |
| 7 | |
| 8 | ## Rule Title Here |
| 9 | |
| 10 | **Impact: MEDIUM (optional impact description)** |
| 11 | |
| 12 | Brief explanation of the rule and why it matters. This should be clear and concise, explaining the performance implications. |
| 13 | |
| 14 | **Incorrect (description of what's wrong):** |
| 15 | |
| 16 | ```typescript |
| 17 | // Bad code example here |
| 18 | const bad = example() |
| 19 | ``` |
| 20 | |
| 21 | **Correct (description of what's right):** |
| 22 | |
| 23 | ```typescript |
| 24 | // Good code example here |
| 25 | const good = example() |
| 26 | ``` |
| 27 | |
| 28 | Reference: [Link to documentation or resource](https://example.com) |
| 29 |