Skip to content

Commit 6cf7f08

Browse files
committed
docs: correct config-nx-scopes project type filtering syntax
1 parent 9306e9a commit 6cf7f08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

@commitlint/config-nx-scopes/readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ module.exports = {
3333
[
3434
...(await getProjects(
3535
ctx,
36-
({name, type}) => !name.includes('e2e') && type == 'application'
36+
({name, projectType}) =>
37+
!name.includes('e2e') && projectType == 'application'
3738
)),
3839
],
3940
],

0 commit comments

Comments
 (0)