.commitlintrc.json

1{
2	"extends": ["@commitlint/config-angular"],
3	"rules": {
4		"scope-case": [0],
5		"type-enum": [
6			2,
7			"always",
8			[
9				"chore",
10				"ci",
11				"feat",
12				"fix",
13				"perf",
14				"refactor",
15				"revert",
16				"style",
17				"test",
18				"types",
19				"workflow",
20				"wip"
21			]
22		]
23	}
24}