as-editor/script/verify-commit.js
2021-11-10 14:13:24 +08:00

15 lines
455 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// const msgPath = process.env.HUSKY_GIT_PARAMS
// const msg = require('fs').readFileSync(msgPath, 'utf-8').trim()
// const commitRE = /^(merge|feat|fix|docs|style|refactor|perf|test|workflow|build|ci|chore|release|workflow)(\(.+\))?: .{1,50}/
// if (!commitRE.test(msg)) {
// console.log()
// console.error(`
// 不合法的 commit 消息格式。
// 请查看 git commit 提交规范feat: XXXXX
// `)
// process.exit(1)
// }