Skip to content

Commit

Permalink
Merge pull request #11 from duncdrum/feat-flex-lint
Browse files Browse the repository at this point in the history
feat(lint): empty type
  • Loading branch information
joewiz authored Apr 8, 2024
2 parents 945c577 + 2ce0291 commit 4ad598b
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "weekly"
commit-message:
prefix: "chore(gha):"
12 changes: 9 additions & 3 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"branches": ["master"],
"plugins": [
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{ "type": "", "release": "patch" }
]
},
"@semantic-release/release-notes-generator",
["@semantic-release/exec", {
"prepareCmd": "ant -Dapp.version=${nextRelease.version}"
Expand All @@ -13,9 +19,9 @@
["@semantic-release/github", {
"assets": [
{
"path": "build/frus-history-*.xar",
"name": "frus-history-${nextRelease.version}.xar",
"label": "Expath package (frus-history-${nextRelease.version}.xar)"
"path": "build/frus-history.xar",
"name": "frus-history.xar",
"label": "Expath package (frus-history.xar)"
}
]
}]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Source data for [History of the Foreign Relations Series](https://history.state.
## 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 [Angular Commit Message Conventions](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines) to determine semantic versioning of releases, please adhere to these conventions, like so:
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:
| Commit message | Release type |
|-----------------|--------------|
Expand Down
8 changes: 8 additions & 0 deletions commitlint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'body-max-line-length': [1, 'always', 200],
'type-empty': [1, 'never'],
'subject-empty': [1, 'never']
}
}
1 change: 0 additions & 1 deletion commitlint.config.js

This file was deleted.

0 comments on commit 4ad598b

Please sign in to comment.