-
Notifications
You must be signed in to change notification settings - Fork 710
Use ProjectFlags to define CleanCmd #9356
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
Conversation
The nearly identical PR for haskell#7439 was used as a guide for this PR. The point of this PR is to reduce the duplication of project flag handling. Co-authored-by: Jean-Paul Calderone <exarkun@twistedmatrix.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I get the impression NamedFieldPuns
is not well liked here, but otherwise it's okay.
Thanks for the contribution! I'm fine with field puns but it's strange to see it turned on together with wildcards -- their purpose largely intersects. Also, where are puns used? I couldn't spot it when skimming the text of the patch. |
Just in the definition of |
Oh, I see now. Yeah, for consistency, it'd make sense to replace it with wildcards, I think. But only because of that. I personally prefer puns to wildcards. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Thanks for the reviews! Per the contributor guide, now labeling for merge. |
@exarkun thank you! ❤️ |
Reduce duplication of project flag handling, fixes #6816
The nearly identical PR for #7439 was used as a guide for this PR.