Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 739 Bytes

CONTRIBUTING.md

File metadata and controls

57 lines (37 loc) · 739 Bytes

参与贡献

代码贡献

  1. Fork 并 close 仓库至本地
git clone git@github.com:YOUR_GITHUB_USERNAME/frontend.git
  1. 为新特性或 Issue 创建一个语义化分支
git checkout -b your-meaningful-branch-name
  1. 安装依赖
pnpm install
  1. 启动本地开发服务器
pnpm run dev
  1. 确保无 Lint 报错 (建议在编辑器中添加 Eslint 插件)
pnpm run lint
  1. 格式化代码 (建议在编辑器中添加 Prettier 插件)
pnpm run format
  1. 确保构建成功
pnpm run build
  1. 发布分支
git push -u origin your-meaningful-branch-name
  1. 切换分支并提交 Pull Request

API

API 接口文档