Skip to content

Commit

Permalink
build: Adjust commitlint so dependabot doesn't cause errors
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Sep 17, 2024
1 parent 954e267 commit 91abc36
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
// 0-disable, 1-warn, 2-error
'subject-case': [0],
// These are the standard values, but are listed here for easier reference
'type-enum': [
Expand All @@ -19,6 +20,11 @@ module.exports = {
'style',
'test'
]
]
],
'body-max-line-length': [
2,
'always',
Infinity
],

Check failure on line 28 in commitlint.config.js

View workflow job for this annotation

GitHub Actions / unpinned

Unexpected trailing comma

Check failure on line 28 in commitlint.config.js

View workflow job for this annotation

GitHub Actions / build

Unexpected trailing comma
}
};

0 comments on commit 91abc36

Please sign in to comment.