Skip to content

Commit

Permalink
chore: relax commitlint check
Browse files Browse the repository at this point in the history
Allow conventional commits, but do not enforce it
  • Loading branch information
kaibernhard committed Nov 16, 2023
1 parent 5dd0d96 commit 95bfcea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ module.exports = {
rules: {
"body-case": [2, "always", "sentence-case"],
"body-leading-blank": [2, "always"],
"header-case": [2, "always", "sentence-case"],
"header-case": [1, "always", "sentence-case"],
"header-full-stop": [2, "never", "."],
"header-max-length": [2, "always", 50],
"header-max-length": [2, "always", 72],
},
};

0 comments on commit 95bfcea

Please sign in to comment.