From 53251a745bd62bd4958feda6faf0786597da8813 Mon Sep 17 00:00:00 2001 From: Jay Tavares Date: Tue, 10 May 2022 22:20:31 -0400 Subject: [PATCH] docs: fix typo in config-nx-scopes readme --- @commitlint/config-nx-scopes/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@commitlint/config-nx-scopes/readme.md b/@commitlint/config-nx-scopes/readme.md index 4ab2f8be58..00027dd92e 100644 --- a/@commitlint/config-nx-scopes/readme.md +++ b/@commitlint/config-nx-scopes/readme.md @@ -14,7 +14,7 @@ echo "module.exports = {extends: ['@commitlint/config-nx-scopes']};" > commitlin ## Filtering projects -You can filter projects by providing a filter function as the second parameter to `getProjects()`. The function will be called with an object containing each projects' `name`, `type`, and `tags`. Simply return a boolean to indicate whether the project should be included or not. +You can filter projects by providing a filter function as the second parameter to `getProjects()`. The function will be called with an object containing each projects' `name`, `projectType`, and `tags`. Simply return a boolean to indicate whether the project should be included or not. As an example, the following code demonstrates how to select only applications that are not end-to-end tests.