Skip to content

Commit

Permalink
chore: change commitlint config (#54)
Browse files Browse the repository at this point in the history
reduce `header-max-length` violations to only raise warnings

closes #51
  • Loading branch information
detj authored Sep 26, 2023
1 parent c20e9e4 commit dc33ed5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .commitlintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ export default {
* - feat(backend): attachments is now available
*
*/
"scope-enum": [2, "always", ["android", "backend", "webapp"]]
"scope-enum": [2, "always", ["android", "backend", "webapp"]],
/**
* reduce header max length violation to a warning
*/
"header-max-length": [1, "always", 72]
}
}

0 comments on commit dc33ed5

Please sign in to comment.