Skip to content

Commit 93182d4

Browse files
committed
ci(super-linter): make line lengths warnings instead of errors
1 parent c50d1b3 commit 93182d4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

commitlint.config.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
export default { extends: ["@commitlint/config-conventional"] };
1+
export default {
2+
extends: ["@commitlint/config-conventional"],
3+
rules: {
4+
"header-max-length": [1, "always", 100],
5+
"body-max-line-length": [1, "always", 100],
6+
"footer-max-length": [1, "always", 100],
7+
},
8+
};

0 commit comments

Comments
 (0)