feat: 添加性能审查指南

- Core Web Vitals (LCP, INP, CLS, FCP, TBT)
- JavaScript 性能(代码分割、Bundle 优化、虚拟列表)
- 内存管理(泄漏检测、清理模式)
- 数据库性能(N+1、索引、查询优化)
- API 性能(分页、缓存、限流)
- 算法复杂度(Big O、常见优化)
- 性能度量阈值和工具推荐
This commit is contained in:
Tu Shaokun
2025-11-29 21:58:45 +08:00
parent 1479bc3d87
commit 91a79e39a9
2 changed files with 753 additions and 0 deletions

View File

@@ -180,6 +180,7 @@ Use labels to indicate priority:
## Additional Resources
- [Architecture Review Guide](reference/architecture-review-guide.md) - 架构设计审查指南SOLID、反模式、耦合度
- [Performance Review Guide](reference/performance-review-guide.md) - 性能审查指南Web Vitals、N+1、复杂度
- [Common Bugs Checklist](reference/common-bugs-checklist.md) - 按语言分类的常见错误清单
- [Security Review Guide](reference/security-review-guide.md) - 安全审查指南
- [Code Review Best Practices](reference/code-review-best-practices.md) - 代码审查最佳实践