changeloguru/internal/convention/types.go

16 lines
287 B
Go
Raw Normal View History

package convention
const (
FixType = "fix"
FeatType = "feat"
BuildType = "build"
ChoreType = "chore"
2021-04-26 02:54:31 +00:00
CIType = "ci"
DocsType = "docs"
StyleType = "style"
RefactorType = "refactor"
PerfType = "perf"
TestType = "test"
MiscType = "misc"
)