2020-11-10 10:04:13 +00:00
|
|
|
package convention
|
|
|
|
|
|
|
|
const (
|
|
|
|
FixType = "fix"
|
|
|
|
FeatType = "feat"
|
|
|
|
BuildType = "build"
|
|
|
|
ChoreType = "chore"
|
|
|
|
CiType = "ci"
|
|
|
|
DocsType = "docs"
|
|
|
|
StyleType = "style"
|
|
|
|
RefactorType = "refactor"
|
|
|
|
PerfType = "perf"
|
|
|
|
TestType = "test"
|
2021-01-11 18:25:06 +00:00
|
|
|
MiscType = "misc"
|
2020-11-10 10:04:13 +00:00
|
|
|
)
|