左钩
最快的多语种Git吸引了经理
快速,强大的Git钩子管理器,用于Node.js,Ruby或任何其他类型的项目。
快速。 它用Go语言编写。 可以并行运行命令。
强大。 在配置中只有几行,您可以仅检查pre-push挂钩上pre-push更改的文件。
简单。 它是单个无依赖性二进制文件,可以在任何环境中工作。
:open_book:
# On `git push` lefthook will run spelling and links check for all of the changed files
pre-push :
parallel : true
commands :
spelling :
files : git diff --name-only HEAD @{push}
glob : " *.md "
run : npx yaspeller {files}
check-links :
files : git diff --name-only HEAD @{push}
glo
1