Skip to content

Commit

Permalink
Merge pull request fdo-rs#697 from mmartinv/fix-dependabot-issues
Browse files Browse the repository at this point in the history
fix dependabot issues
  • Loading branch information
mergify[bot] authored Nov 26, 2024
2 parents b526926 + e1e2d22 commit b5b0da8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ const validateBodyMaxLengthIgnoringDeps = async (parsedCommit) => {
&& body != null
&& body.includes('Updates the requirements on');

const bodyMaxLineLength = 100;
const bodyMaxLineLength = 1000;

return [
isDepsCommit || !body || maxLineLength(body, bodyMaxLineLength),
`body's lines must not be longer than ${bodyMaxLineLength}`,
]
}

module.exports = {
export default {
extends: ['@commitlint/config-conventional'],
plugins: ['commitlint-plugin-function-rules'],
rules: {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
env:
NODE_PATH: ${{ github.workspace }}/node_modules
with:
configFile: .github/commitlint.config.js
configFile: .github/commitlint.config.mjs
failOnWarnings: true

manpages:
Expand Down

0 comments on commit b5b0da8

Please sign in to comment.