Skip to content

Commit 711f49e

Browse files
authored
chore: increase commit header maximum length to 200 (#789)
* chore: increase commit header maximum length to 200 in commitlint configuration. * chore: Disable commitlint rules for header max length and header full stop.
1 parent 1ac5913 commit 711f49e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

commitlint.config.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ export default {
88
// Disable the rule that enforces lowercase in subject
99
"subject-case": [0], // 0 = disable, 1 = warn, 2 = error
1010
// Disable the rule that enforces a maximum line length in the body
11-
"body-max-line-length": [0, "always"]
11+
"body-max-line-length": [0, "always"],
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]
1216
},
1317

1418
};

0 commit comments

Comments
 (0)