Skip to content

Commit 4c9e1e8

Browse files
committed
docs: correct config-nx-scopes project type filtering syntax
1 parent cb57453 commit 4c9e1e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

+2-1
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)