29 lines
609 B
Markdown
29 lines
609 B
Markdown
---
|
|
title: Rule Title Here
|
|
impact: MEDIUM
|
|
impactDescription: Optional description of impact (e.g., "20-50% improvement")
|
|
tags: tag1, tag2
|
|
---
|
|
|
|
## Rule Title Here
|
|
|
|
**Impact: MEDIUM(可选的影响描述)**
|
|
|
|
简要说明该规则及其重要性。内容应清晰简洁,阐述其性能影响。
|
|
|
|
**错误用法(对问题行为的描述):**
|
|
|
|
```typescript
|
|
// 此处为错误代码示例
|
|
const bad = example()
|
|
```
|
|
|
|
**正确用法(对正确做法的描述):**
|
|
|
|
```typescript
|
|
// 此处为正确代码示例
|
|
const good = example()
|
|
```
|
|
|
|
参考文档:[链接到文档或资源](https://example.com)
|