Files
frappe-lms/commitlint.config.js
2026-03-16 07:53:02 +00:00

28 lines
492 B
JavaScript

export default {
parserPreset: "conventional-changelog-conventionalcommits",
ignores: [(commit) => commit.startsWith("Initial plan")],
rules: {
"subject-empty": [2, "never"],
"type-case": [2, "always", "lower-case"],
"type-empty": [2, "never"],
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"deprecate", // deprecation decision
],
],
},
};