# FLORA AI **Repository Path**: tuli_p/flora-ai ## Basic Information - **Project Name**: FLORA AI - **Description**: ai美容项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-05-12 - **Last Updated**: 2025-09-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # My React App 基于React和TypeScript的现代前端项目,使用Vite作为构建工具。 ## 主要技术栈 - React 19 - TypeScript - Vite 6 - ESLint - Prettier - StyleLint - CommitLint - Husky ## 开发工具链配置 - **ESLint**: 代码质量检查工具 - **Prettier**: 代码格式化工具 - **StyleLint**: CSS代码质量检查工具 - **CommitLint**: Git提交信息规范检查 - **Husky**: Git钩子工具 - **lint-staged**: 对暂存区的文件运行linters ## 快速开始 ```bash # 安装依赖 npm install # 启动开发服务器 npm run dev # 构建项目 npm run build # 代码格式化 npm run format # 代码检查 npm run lint # 自动修复代码问题 npm run lint:fix # 样式文件检查 npm run stylelint # 样式文件自动修复 npm run stylelint:fix ``` ## Git提交规范 本项目使用 [Conventional Commits](https://www.conventionalcommits.org/) 规范,提交类型包括: - `feat`: 新功能 - `fix`: 修复Bug - `docs`: 文档更新 - `style`: 代码风格调整(不影响代码运行) - `refactor`: 代码重构 - `perf`: 性能优化 - `test`: 测试相关 - `build`: 构建相关 - `ci`: CI配置相关 - `chore`: 其它修改 - `revert`: 回退提交 提交示例: ``` feat(user): 添加用户登录功能 ```