Skip to content

Commit

Permalink
chore: ensure commit lint ignores dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Gabor Boros <[email protected]>
  • Loading branch information
gabor-boros committed Apr 19, 2024
1 parent 531efa6 commit 77ef2fd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .commitlintrc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ const configuration = {
* To see full list, check https://github.com/conventional-changelog/commitlint/blob/master/%40commitlint/is-ignored/src/defaults.ts.
* To disable those ignores and run rules always, set `defaultIgnores: false` as shown below.
*/
ignores: [
(message) => /^chore\(deps\): bump (.*) from (.*) to (.*)$/m.test(message),
],
ignores: [(message) => /^chore\(deps\): bump .*/m.test(message)],
};

export default configuration;

0 comments on commit 77ef2fd

Please sign in to comment.