feat(dev-infra): create commit-message validation script/tooling (#36117)

PR Close #36117
This commit is contained in:
Joey Perrott
2020-03-10 10:29:44 -07:00
committed by Misko Hevery
parent 2afc7e982e
commit 14b2db1d43
9 changed files with 503 additions and 6 deletions

View File

@ -0,0 +1,13 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export interface CommitMessageConfig {
maxLineLength: number;
minBodyLength: number;
types: string[];
scopes: string[];
}