Skip to content

Commit

Permalink
chore: add content commit type to commitlint config (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterckx committed Nov 13, 2024
1 parent 0f7dde7 commit f5aafe8
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
module.exports = { extends: ["@commitlint/config-conventional"] };
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"content",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
],
],
},
};

0 comments on commit f5aafe8

Please sign in to comment.