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], }, };