spiegel-keyman/resources/git-hooks/commit-msg-defs
Joshua Horton 0574d28eea
Update resources/git-hooks/commit-msg-defs
Co-Authored-By: Darcy Wong <darcywong00@users.noreply.github.com>
2020-02-06 11:53:49 +07:00

18 lines
582 B
Bash
Executable file

#!/bin/bash
# Configurable options for types, scopes and message length.
#
types=(fix feat chore change docs style refactor test auto)
scopes=( \
android android/app android/browser android/engine android/oem \
ci \
common common/core common/lmlayer \
developer developer/compiler developer/ide developer/tools \
ios ios/app ios/browser ios/engine ios/oem \
linux linux/config linux/engine linux/ibus linux/oem \
mac mac/config mac/engine mac/oem \
web web/engine web/oem web/ui \
windows windows/config windows/engine windows/oem \
)
min_length=4
max_length=128