Revision 1146e4736bb07993d7493f14b4a00488381be3ae authored by ayazhafiz on 05 October 2020, 04:31:22 UTC, committed by Alex Rickabaugh on 22 October 2020, 20:41:52 UTC
There is no actionable change in this commit other than to pretty-print
EOF tokens. Actual parsing of unterminated pipes is already supported,
this just adds a test for it.

Part of #38596

PR Close #39113
1 parent 38efd64
Raw File
commit-message-source.ts
/**
 * @license
 * Copyright Google LLC 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
 */

/**
 * The source triggering the git commit message creation.
 * As described in: https://git-scm.com/docs/githooks#_prepare_commit_msg
 */
export type CommitMsgSource = 'message'|'template'|'merge'|'squash'|'commit';
back to top