mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-02-22 18:44:44 +08:00
25 lines
433 B
JavaScript
25 lines
433 B
JavaScript
export default {
|
|
extends: ["@commitlint/config-conventional"],
|
|
rules: {
|
|
// TODO Add Scope Enum Here
|
|
// 'scope-enum': [2, 'always', ['yourscope', 'yourscope']],
|
|
"type-enum": [
|
|
2,
|
|
"always",
|
|
[
|
|
"feat",
|
|
"fix",
|
|
"docs",
|
|
"chore",
|
|
"style",
|
|
"refactor",
|
|
"ci",
|
|
"test",
|
|
"perf",
|
|
"revert",
|
|
"vercel",
|
|
],
|
|
],
|
|
},
|
|
};
|