chore: add release workflow (commitlint, husky, lint-staged, release-it)

This commit is contained in:
ginnoir
2026-06-01 18:33:37 -05:00
parent e9bb2a5444
commit 30af9f63bf
8 changed files with 1832 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
export default {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [
2,
"always",
["feat", "fix", "refactor", "docs", "test", "chore", "perf", "ci", "revert"],
],
"subject-case": [2, "always", "lower-case"],
"subject-max-length": [2, "always", 100],
},
};