Skip to content

Commit

Permalink
fix: commitlint
Browse files Browse the repository at this point in the history
  • Loading branch information
simonecorsi committed May 21, 2024
1 parent 58f9159 commit 2fac4aa
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
module.exports = { extends: ['@commitlint/config-conventional'] };
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'body-max-length': [0, 'always'],
'body-max-line-length': [0, 'always'],
'footer-max-length': [0, 'always'],
'footer-max-line-length': [0, 'always'],
'header-max-length': [0, 'always'],
'scope-max-length': [0, 'always'],
'subject-max-length': [0, 'always'],
'type-max-length': [0, 'always'],
},
};

0 comments on commit 2fac4aa

Please sign in to comment.