Skip to content

Commit

Permalink
docs: correct config-nx-scopes project type filtering syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jaytavares committed May 11, 2022
1 parent cb57453 commit 4c9e1e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion @commitlint/config-nx-scopes/readme.md
Expand Up @@ -33,7 +33,8 @@ module.exports = {
[
...(await getProjects(
ctx,
({name, type}) => !name.includes('e2e') && type == 'application'
({name, projectType}) =>
!name.includes('e2e') && projectType == 'application'
)),
],
],
Expand Down

0 comments on commit 4c9e1e8

Please sign in to comment.