Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion commitlint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ export default {
// Disable the rule that enforces lowercase in subject
"subject-case": [0], // 0 = disable, 1 = warn, 2 = error
// Disable the rule that enforces a maximum line length in the body
"body-max-line-length": [0, "always"]
"body-max-line-length": [0, "always"],
// Disable header max length for AI-generated commits
"header-max-length": [0],
// Disable the rule that prevents periods at the end of subjects
"header-full-stop": [0]
},

};
Loading