File tree 2 files changed +36
-1
lines changed
2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ extends :
2
+ - " @commitlint/config-conventional"
3
+
4
+ rules :
5
+ # lowercase on the "type".
6
+ type-case : [1, "always", "lower-case"]
7
+
8
+ # lowercase on the subject (the short description).
9
+ subject-case : [1, "always", "lower-case"]
10
+
11
+ # Disallow trailing period in the subject line.
12
+ subject-full-stop : [2, "never", "."]
13
+
14
+ # Limit the full header (type + subject) to 72 chars max.
15
+ header-max-length : [2, "always", 72]
16
+
17
+ # Require a blank line after the header.
18
+ body-leading-blank : [2, "always"]
19
+
20
+ # Limit body lines to 72 chars.
21
+ body-max-line-length : [2, "always", 72]
22
+
23
+ # Require a blank line before the footer (e.g., “Fixes: #123”).
24
+ footer-leading-blank : [2, "always"]
25
+
26
+ # Limit footer lines to 72 chars as well.
27
+ footer-max-line-length : [2, "always", 72]
Original file line number Diff line number Diff line change @@ -15,4 +15,12 @@ lcov**.info
15
15
metrics.json
16
16
17
17
# lychee
18
- .lycheecache
18
+ .lycheecache
19
+
20
+ # npm
21
+ ** /node_modules
22
+ package-lock.json
23
+ package.json
24
+
25
+ // husky
26
+ .husky
You can’t perform that action at this time.
0 commit comments