Skip to content

Commit

Permalink
fix(lint.cjs): allow bot commits
Browse files Browse the repository at this point in the history
  • Loading branch information
duncdrum committed Apr 8, 2024
1 parent b6b8352 commit 2a2417a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Source data for [A Guide to the United States' History of Recognition, Diplomati

## Release

Releases for this data package are automated. Any commit to the `master`` branch will trigger the release automation.
Releases for this data package are automated. Any commit to the `master` branch will trigger the release automation.

All commit message must conform to [Conventional Commit Messages](https://www.conventionalcommits.org/en/v1.0.0/) to determine semantic versioning of releases, please adhere to these conventions, like so:

Expand Down
9 changes: 8 additions & 1 deletion commitlint.config.cjs
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
module.exports = {extends: ['@commitlint/config-angular']}
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'body-max-line-length': [1, 'always', 200],
'type-empty': [1, 'never'],
'subject-empty': [1, 'never']
}
}

0 comments on commit 2a2417a

Please sign in to comment.