From 206545b2856c65d8215a93d28c4e93150b6dda5d Mon Sep 17 00:00:00 2001 From: awinberg-aws <100880084+awinberg-aws@users.noreply.github.com> Date: Fri, 20 Oct 2023 11:22:05 -0700 Subject: [PATCH] chore: update commitlint config to allow deps-dev for dependabot updates --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 3203f174b..42238389f 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -5,7 +5,7 @@ const { module.exports = { extends: ['@commitlint/config-conventional', '@commitlint/config-lerna-scopes'], rules: { - 'scope-enum': async (context) => [2, 'always', [...(await getPackages(context)), 'release', 'deps']], + 'scope-enum': async (context) => [2, 'always', [...(await getPackages(context)), 'release', 'deps', 'deps-dev']], 'header-max-length': [2, 'always', 200], }, };