feat(dev-infra): create commit-message validation script/tooling (#36117)
PR Close #36117
This commit is contained in:

committed by
Misko Hevery

parent
2afc7e982e
commit
14b2db1d43
13
dev-infra/commit-message/config.ts
Normal file
13
dev-infra/commit-message/config.ts
Normal 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[];
|
||||
}
|
Reference in New Issue
Block a user