Skip to content

Commit

Permalink
fix: disable header and footer line length commitlint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgavrusev committed Apr 17, 2024
1 parent 3e6953f commit bcf1d07
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion commitlint.config.js
@@ -1 +1,8 @@
module.exports = { extends: ["@commitlint/config-conventional"] };
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
// do not error for long body and footer lines (like those seen in dependabot commits)
"body-max-line-length": [0],
"footer-max-line-length": [0],
},
};

0 comments on commit bcf1d07

Please sign in to comment.