mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
18 lines
582 B
Bash
Executable file
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
|