15 lines
264 B
Go
15 lines
264 B
Go
|
package convention
|
||
|
|
||
|
const (
|
||
|
FixType = "fix"
|
||
|
FeatType = "feat"
|
||
|
BuildType = "build"
|
||
|
ChoreType = "chore"
|
||
|
CiType = "ci"
|
||
|
DocsType = "docs"
|
||
|
StyleType = "style"
|
||
|
RefactorType = "refactor"
|
||
|
PerfType = "perf"
|
||
|
TestType = "test"
|
||
|
)
|