Files
old.cms.fellies.org/commitlint.config.cjs
Citali a57464d818
Some checks failed
CMS CI / Governance Checks (push) Successful in 1m6s
CMS CI / Lint Typecheck Unit E2E (push) Failing after 1m8s
chore(repo): remove theoretical workflow and fix prisma ci generation
2026-02-11 18:26:42 +01:00

13 lines
288 B
JavaScript

module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [
2,
"always",
["feat", "fix", "refactor", "perf", "test", "docs", "build", "ci", "chore", "revert"],
],
"scope-empty": [0],
"subject-empty": [2, "never"],
},
}