commitlint.config.js
module.exports = {
extends: ["git-commit-emoji"],
rules: {
"type-enum": [
2,
"always",
[
"๐ init",
"โจ feat",
"๐ fix",
"๐ docs",
"๐ style",
"โป๏ธ refactor",
"๐ perf",
"๐งช test",
"๐๏ธ build",
"๐ฆ ci",
"๐งน chore",
"โฉ revert",
],
],
},
};