Skip to content

Commit 1dbb6bd

Browse files
committed
ci(super-linter): fix commitlint config
1 parent 22e6edc commit 1dbb6bd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

commitlint.config.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
export default {
1+
const Configuration = {
2+
/*
3+
* Inherit rules from conventional commits.
4+
*/
25
extends: ["@commitlint/config-conventional"],
6+
7+
/*
8+
* Any rules defined here will override rules from parent.
9+
*/
310
rules: {
411
"header-max-length": [1, "always", 100],
512
"body-max-line-length": [1, "always", 100],
613
"footer-max-length": [1, "always", 100],
714
},
815
};
16+
17+
export default Configuration;

0 commit comments

Comments
 (0)