diff --git a/README.md b/README.md
index 3252462..191edb5 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,6 @@
@@ -26,28 +25,28 @@
## 截图预览
-
-  |
-  |
-
-
+
+  |
+  |
+
+
 |
-  |
-
+  |
+
展开预览暗黑模式下的界面截图。
-
-  |
-  |
-
-
+
+  |
+  |
+
+
 |
-  |
-
+  |
+
@@ -120,20 +119,74 @@ pnpm build
## Git 贡献提交规范
-- 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
- - `feat` 增加新功能
- - `fix` 修复问题/BUG
- - `style` 代码风格相关无影响运行结果的
- - `perf` 优化/性能提升
- - `refactor` 重构
- - `revert` 撤销修改
- - `test` 测试相关
- - `docs` 文档/注释
- - `chore` 依赖更新/脚手架配置修改等
- - `workflow` 工作流改进
- - `ci` 持续集成
- - `types` 类型定义文件更改
- - `wip` 开发中
+### 提交规范
+
+参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
+
+- `feat` 增加新功能
+- `fix` 修复问题/BUG
+- `style` 代码风格相关无影响运行结果的
+- `perf` 优化/性能提升
+- `refactor` 重构
+- `revert` 撤销修改
+- `test` 测试相关
+- `docs` 文档/注释
+- `chore` 依赖更新/脚手架配置修改等
+- `workflow` 工作流改进
+- `ci` 持续集成
+- `types` 类型定义文件更改
+- `wip` 开发中
+
+### 提交校验
+
+代码首次拉下来 `pnpm install` 后 需要执行以下命令来更新 `git hooks`
+
+```shell
+# Update ./git/hooks
+npx simple-git-hooks
+```
+
+本项目提交规范校验使用 [simple-git-hooks](https://github.com/toplenboren/simple-git-hooks) 作为 git hooks,使用 [cz-git](https://github.com/Zhengqbbb/cz-git) 作为 commitlint commitizen。
+
+代码要想使用 commitlint 规范提交需要在更改的文件 `git add` 后,控制台执行 `cz` 命令开启 cz-git CLI
+
+若想直接执行 `git commit` 需要满足上面提交规范才能通过校验,否则无法提交
+
+simple-git-hooks 和 husky 都是用于管理 Git 钩子(Git hooks)的工具,但它们有一些区别:
+
+1. simple-git-hooks:
+
+- 简介: simple-git-hooks 是一个轻量级的工具,用于管理和运行Git钩子。
+- 特点:
+ - 提供了简单的配置方式来定义和运行 Gi 钩子。
+ - 适合于小型项目或对 Git 钩子需求不复杂的项目。
+ - 相对较少的功能和配置选项。
+ - 使用场景: 适用于简单的项目或对 Git 钩子管理需求不高的情况。
+
+2. husky:
+
+- 简介: husky 是一个功能强大的工具,用于管理 Git 钩子,并且在项目中被广泛使用。
+- 特点:
+ - 提供了丰富的配置选项和灵活性,可以精细地控制 Git 钩子的行为。
+ - 支持在不同的 Git 钩子事件上运行自定义脚本。
+ - 可以与其他工具(如linters、测试框架等)集成,实现更复杂的工作流。
+ - 使用场景: 适用于需要灵活配置和管理 Git 钩子的项目,尤其是大型或复杂的项目。
+
+```json
+// package.json
+{
+ "simple-git-hooks": {
+ // 对暂存区执行 eslint --fix
+ "pre-commit": "pnpm lint-staged",
+ // 对提交信息进行校验
+ "commit-msg": "npx --no-install commitlint --edit $1"
+ },
+
+ "lint-staged": {
+ "*": "eslint --fix"
+ }
+}
+```
## 浏览器支持
@@ -142,8 +195,8 @@ pnpm build
支持现代浏览器, 不支持 IE
| [](http://godban.github.io/browsers-support-badges/) IE | [](http://godban.github.io/browsers-support-badges/) Edge | [](http://godban.github.io/browsers-support-badges/) Firefox | [](http://godban.github.io/browsers-support-badges/) Chrome | [](http://godban.github.io/browsers-support-badges/) Safari |
-| --- | --- | --- | --- | --- |
-| not support | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| not support | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
## 维护者