Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PSReviewUnusedParameter false positive for ValueFromPipeline #2072

Conversation

liamjpeters
Copy link
Contributor

@liamjpeters liamjpeters commented Mar 3, 2025

PR Summary

Whether good practice or not, a parameter defined with ValueFromPipeline is flagged as unused when referred to by $_ or $PSItem within the process block of a function.

This PR checks for ValueFromPipeline when the parameter's usage is inspected. If set, $_ and $PSItem count towards it's usage when seen in a process block.

Fixes #1840

PR Checklist

@liamjpeters liamjpeters marked this pull request as ready for review March 4, 2025 09:36
@andyleejordan andyleejordan enabled auto-merge (squash) March 6, 2025 20:00
auto-merge was automatically disabled March 10, 2025 19:30

Head branch was pushed to by a user without write access

Copy link
Collaborator

@bergmeister bergmeister left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks, retriggered CI

liamjpeters and others added 5 commits March 13, 2025 10:05
…t directly contains variable usage of $_ or $PSItem. Then when we encounted a parameter with ValueFromPipeline set, we consider whether we saw usage within a process block by automatic variable.
Co-authored-by: Andy Jordan <2226434+andyleejordan@users.noreply.github.com>
@andyleejordan andyleejordan force-pushed the #1840PSReviewUnusedParameterVsValueFromPipeline branch from 95e1486 to d83b1d9 Compare March 13, 2025 17:05
@andyleejordan andyleejordan merged commit 1d394ee into PowerShell:main Mar 13, 2025
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

PSReviewUnusedParameter false positive for ValueFromPipeline and current process item $_
3 participants