module.exports = { extends: ["@commitlint/config-conventional"], rules: { "type-enum": [ 2, "always", [ // Default types from conventional commits "build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "revert", "style", "test", // Custom types from PR template "i18n", "ai", ], ], }, }