Skip to content

Commit

Permalink
feat: commitlint config file and command (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamturns authored Jan 1, 2022
1 parent 5180ee5 commit 7a48379
Show file tree
Hide file tree
Showing 5 changed files with 4,536 additions and 2,155 deletions.
9 changes: 9 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
// Loosen up on the line lengths
"header-max-length": [2, "always", Number.POSITIVE_INFINITY],
"body-max-line-length": [2, "always", Number.POSITIVE_INFINITY],
"footer-max-line-length": [2, "always", Number.POSITIVE_INFINITY],
},
};
Loading

0 comments on commit 7a48379

Please sign in to comment.