diff --git a/.husky/commit-msg b/.husky/commit-msg new file mode 100755 index 00000000..80416c7b --- /dev/null +++ b/.husky/commit-msg @@ -0,0 +1,4 @@ +#!/usr/bin/env sh +. "$(dirname -- "$0")/_/husky.sh" + +npx --no-install commitlint --edit "$1" diff --git a/.husky/common.sh b/.husky/common.sh new file mode 100644 index 00000000..0875f444 --- /dev/null +++ b/.husky/common.sh @@ -0,0 +1,8 @@ +#!/bin/sh +command_exists () { + command -v "$1" >/dev/null 2>&1 +} + +if command_exists winpty && test -t 1; then + exec < /dev/tty +fi diff --git a/.husky/pre-commit b/.husky/pre-commit index 5acb44c6..b8513455 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,7 @@ #!/usr/bin/env sh -. "$(dirname "$0")/_/husky.sh" +. "$(dirname -- "$0")/_/husky.sh" +. "$(dirname "$0")/common.sh" + +[ -n "$CI" ] && exit 0 pnpm lint-staged --allow-empty "$1" \ No newline at end of file diff --git a/commitlint.config.cjs b/commitlint.config.cjs index 552880ad..5326360b 100644 --- a/commitlint.config.cjs +++ b/commitlint.config.cjs @@ -1,20 +1,38 @@ +// update: 更新代码 | Update code +// fix: 修复 bug | Fix bug +// feat: 新功能 | New feature +// chore: 构建过程或辅助工具的变动 | Build process or auxiliary tool changes +// docs: 文档 | Documentation +// refactor: 重构(即不是新增功能,也不是修改 bug 的代码变动) | Refactor (i.e. code changes that are neither new features nor bug fixes) +// test: 增加测试 | Add test +// style: 代码格式(不影响功能,例如空格、分号等格式修正) | Code format (no functional impact, such as space, semicolon, etc.) +// version: 更新迭代 package.json 版本号 | Update the package.json version number +// build: 构建 | Build + module.exports = { + ignores: [(commit) => commit.includes('init')], extends: ['@commitlint/config-conventional'], rules: { + 'body-leading-blank': [2, 'always'], + 'footer-leading-blank': [1, 'always'], + 'header-max-length': [2, 'always', 108], + 'subject-empty': [2, 'never'], + 'type-empty': [2, 'never'], + 'subject-case': [0], 'type-enum': [ 2, 'always', [ - 'bug', - 'feat', + 'update', 'fix', + 'feat', + 'chore', 'docs', - 'style', 'refactor', 'test', - 'chore', - 'revert', - 'merge', + 'style', + 'version', + 'build', ], ], },