mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
117318f55c
Dependabot doesn't allow configuring the max commit message line length until https://github.com/dependabot/dependabot-core/issues/2445 is resolved, so we cannot validate Dependabot commits at this time.
7 lines
287 B
JavaScript
7 lines
287 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
helpUrl: 'https://www.conventionalcommits.org/',
|
|
// We need this until https://github.com/dependabot/dependabot-core/issues/2445
|
|
// is resolved.
|
|
ignores: [(msg) => /Signed-off-by: dependabot\[bot]/m.test(msg)]
|
|
}
|