diff --git a/@commitlint/config-nx-scopes/readme.md b/@commitlint/config-nx-scopes/readme.md index 65b39bd878..4ab2f8be58 100644 --- a/@commitlint/config-nx-scopes/readme.md +++ b/@commitlint/config-nx-scopes/readme.md @@ -33,7 +33,8 @@ module.exports = { [ ...(await getProjects( ctx, - ({name, type}) => !name.includes('e2e') && type == 'application' + ({name, projectType}) => + !name.includes('e2e') && projectType == 'application' )), ], ],