Skip to content

Commit f3e3fcb

Browse files
committed
chore: Disable commitlint rules for header max length and header full stop.
1 parent d9e7752 commit f3e3fcb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

commitlint.config.mjs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ export default {
99
"subject-case": [0], // 0 = disable, 1 = warn, 2 = error
1010
// Disable the rule that enforces a maximum line length in the body
1111
"body-max-line-length": [0, "always"],
12-
// Increase the header max length to accommodate longer commit messages
13-
"header-max-length": [2, "always", 200]
12+
// Disable header max length for AI-generated commits
13+
"header-max-length": [0],
14+
// Disable the rule that prevents periods at the end of subjects
15+
"header-full-stop": [0]
1416
},
1517

1618
};

0 commit comments

Comments
 (0)