ci: add missing lints to iox_query_influxrpc

This crate was missing some of the common lints we use everywhere else.
pull/24376/head
Dom Dwyer 2023-05-22 13:58:40 +02:00
parent 456cf2160b
commit adb135d47c
No known key found for this signature in database
GPG Key ID: E4C40DBD9157879A
1 changed files with 13 additions and 0 deletions

View File

@ -1,5 +1,18 @@
//! Query frontend for InfluxDB Storage gRPC requests
#![deny(rustdoc::broken_intra_doc_links, rust_2018_idioms)]
#![warn(
clippy::clone_on_ref_ptr,
clippy::dbg_macro,
clippy::explicit_iter_loop,
// See https://github.com/influxdata/influxdb_iox/pull/1671
clippy::future_not_send,
clippy::todo,
clippy::use_self,
missing_copy_implementations,
missing_debug_implementations,
)]
use arrow::datatypes::DataType;
use data_types::ChunkId;
use datafusion::{