-
Notifications
You must be signed in to change notification settings - Fork 2
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
Report more error responses #97
Conversation
Best reviewed commit-by-commit. |
7ec275a
to
a247e6d
Compare
@@ -38,6 +38,7 @@ | |||
- ignore: { name: 'Use const' } | |||
- ignore: { name: 'Move brackets to avoid $' } | |||
- ignore: { name: 'Use ?~' } | |||
- ignore: { name: 'Eta reduce' } |
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.
Ignoring this one because it encourages losing names (cancelCall = Grpc.serverCallCancel serverCall Grpc.StatusUnknown
instead of cancelCall err = Grpc.serverCallCancel serverCall Grpc.StatusUnknown err
).
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.
Does this apply project-wide? If so, I'd argue this warning is good to have in general. Is it possible to ignore a warning on a code line/site basis?
@neongreen, can you please rebase on top of the latest |
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 like how you factor out common patterns.
5dca6c1
to
1a0bfc0
Compare
Oops, forgot to address the comment about |
Fixes #94.