fix(Cli): merge commit lint failed in some cases (#6360)

This commit is contained in:
neverland 2020-05-24 16:41:23 +08:00 committed by GitHub
parent 2c4f0efd6f
commit dc45ab8d96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ import { readFileSync } from 'fs-extra';
import { consola } from '../common/logger';
const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|style|build|chore|refactor|breaking change)(\(.+\))?: .{1,50}/;
const mergeRE = /Merge branch /;
const mergeRE = /Merge /;
export function commitLint() {
const gitParams = process.env.HUSKY_GIT_PARAMS as string;