You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
466 B
Markdown

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#项目规范
## 技术栈
- 前端:Tauri + Vue 3 + TypeScript
- 后端:Java + Spring Boot
- 数据库:MS SQL Server 或 OceanBase
## 代码规范
- 函数名用 camelcase组件名用 Pascalcase
- 所有函数必须有 JSDoc 注释
- 错误处理必须用 try/catch不能用.catch()
## 禁止行为
- 不使用 any 类型
- 不写裸 console.log用统一的 logger
- css不用内联样式
## 提交规范
feat:新功能 |fix:修复| refactor:重构