Skip to content

Commit

Permalink
Fix clippy errors on protobuf files
Browse files Browse the repository at this point in the history
  • Loading branch information
sporkmonger committed Aug 9, 2024
1 parent 14f9c46 commit ecc23af
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/ext-processor/src/protobuf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ pub mod envoy {
}
}
pub mod core {
#[allow(clippy::doc_lazy_continuation)]
#[allow(clippy::large_enum_variant)]
pub mod v3 {
include!(concat!(env!("OUT_DIR"), "/envoy.config.core.v3.rs"));
Expand All @@ -21,6 +22,7 @@ pub mod envoy {
pub mod filters {
pub mod http {
pub mod ext_authz {
#[allow(clippy::doc_lazy_continuation)]
#[allow(clippy::large_enum_variant)]
pub mod v3 {
include!(concat!(
Expand All @@ -30,6 +32,7 @@ pub mod envoy {
}
}
pub mod ext_proc {
#[allow(clippy::doc_lazy_continuation)]
pub mod v3 {
include!(concat!(
env!("OUT_DIR"),
Expand All @@ -52,6 +55,7 @@ pub mod envoy {
}
pub mod service {
pub mod auth {
#[allow(clippy::doc_lazy_continuation)]
pub mod v3 {
include!(concat!(env!("OUT_DIR"), "/envoy.service.auth.v3.rs"));
}
Expand Down

0 comments on commit ecc23af

Please sign in to comment.