Skip to content

Commit

Permalink
Merge pull request #3950 from BitGo/BTC-491-commitlint-deps
Browse files Browse the repository at this point in the history
chore(root): allow deps as a scope for commitlint
  • Loading branch information
davidkaplanbitgo authored Oct 2, 2023
2 parents 4bd23ac + 483c8b8 commit 732584c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
extends: ['@commitlint/config-conventional'],
ignores: [(commit) => /^Merge commit '[a-f0-9]{40}'$/m.test(commit)],
rules: {
'scope-enum': async () => [2, 'always', (await readdir('modules')).concat('root')],
'scope-enum': async () => [2, 'always', (await readdir('modules')).concat('root', 'deps')],
'footer-max-line-length': [0, 'always', Infinity],
'references-empty': [2, 'never'],
},
Expand Down

0 comments on commit 732584c

Please sign in to comment.