Skip to content

Commit fd5e8e2

Browse files
committed
Revert "this is a test"
This reverts commit 887ed23.
1 parent 887ed23 commit fd5e8e2

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

commitlint.config.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
const Configuration = {
2+
/*
3+
* Inherit rules from conventional commits.
4+
*/
25
extends: ["@commitlint/config-conventional"],
3-
ignores: [(commit) => true],
6+
7+
/*
8+
* Any rules defined here will override rules from parent.
9+
*/
10+
rules: {
11+
"header-max-length": [1, "always", 100],
12+
"body-max-line-length": [1, "always", 100],
13+
"footer-max-length": [1, "always", 100],
14+
},
415
};
516

617
export default Configuration;

0 commit comments

Comments
 (0)