Files
TechRadarAJR/commitlint.config.js
Mathias Schopmans 9025da3ab8 feat: add commitlint
2024-03-11 10:40:14 +01:00

27 lines
395 B
JavaScript

module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [
2,
"always",
[
"feat",
"sec",
"fix",
"bug",
"test",
"refactor",
"rework",
"ops",
"ci",
"cd",
"build",
"doc",
"perf",
"chore",
"update",
],
],
},
};