Skip to content

Commit d9e7752

Browse files
committed
config: increase commit header maximum length to 200 in commitlint configuration.
1 parent 7a61bfa commit d9e7752

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

commitlint.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ 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+
// Increase the header max length to accommodate longer commit messages
13+
"header-max-length": [2, "always", 200]
1214
},
1315

1416
};

0 commit comments

Comments
 (0)