From f32882f73e493a1873f16294c6610e98be27d273 Mon Sep 17 00:00:00 2001 From: Chris Woolum Date: Thu, 19 Jan 2023 09:30:56 -0800 Subject: [PATCH] Update commitlint.config.js --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index acb2b8ddf..3203f174b 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']], + 'scope-enum': async (context) => [2, 'always', [...(await getPackages(context)), 'release', 'deps']], 'header-max-length': [2, 'always', 200], }, };