24 lines
379 B
JavaScript
24 lines
379 B
JavaScript
|
|
export default {
|
||
|
|
extends: ["@commitlint/config-conventional"],
|
||
|
|
rules: {
|
||
|
|
"type-enum": [
|
||
|
|
2,
|
||
|
|
"always",
|
||
|
|
[
|
||
|
|
"feat",
|
||
|
|
"fix",
|
||
|
|
"docs",
|
||
|
|
"style",
|
||
|
|
"refactor",
|
||
|
|
"perf",
|
||
|
|
"test",
|
||
|
|
"build",
|
||
|
|
"ci",
|
||
|
|
"chore",
|
||
|
|
"revert",
|
||
|
|
],
|
||
|
|
],
|
||
|
|
"subject-max-length": [2, "always", 72],
|
||
|
|
},
|
||
|
|
};
|