tower-rs / tower-grpc

A gRPC client & server implementation.
MIT License
562 stars 73 forks source link

Generated code fails clippy #194

Closed max-sixty closed 5 years ago

max-sixty commented 5 years ago

Generated code fails clippy. Unfortunately, clippy's checks seems to lack the configurability to exclude the generated file, restricting dependent projects from running clippy in CI.

Here's an example: https://github.com/andygrove/ballista/pull/31#issuecomment-513368260

Could either fix those issues or add #![allow(clippy::all)] to the top of the files

seanmonstar commented 5 years ago

You could add that allow on the mod proto in the lib.rs file there.

max-sixty commented 5 years ago

Great, thanks! Feel free to close this