feat(cli): allow style type commit message

This commit is contained in:
chenjiahan 2020-04-19 14:55:28 +08:00
parent 13cf59fb90
commit 3c793fab16

View File

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