Skip to content

Commit

Permalink
ci(commitlint): disable commitlint line length and total length check…
Browse files Browse the repository at this point in the history
…ing (xability#87)

closes xability#86
  • Loading branch information
jooyoungseo authored Aug 21, 2024
1 parent c188dfb commit 3f718a7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .commitlintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"body-max-line-length": [0, "always", 0], // Disable line length checking for the body
"body-max-length": [0, "always", Infinity], // Disable total body length checking
"header-max-length": [0, "always", 0], // Disable header length checking
"footer-max-line-length": [0, "always", 0], // Disable line length checking for the footer
"footer-max-length": [0, "always", Infinity], // Disable total footer length checking
},
};

0 comments on commit 3f718a7

Please sign in to comment.