Skip to content

Commit

Permalink
use warn not deny
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiayu Liu committed Jun 12, 2021
1 parent 435cc79 commit f14084a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions datafusion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#![warn(missing_docs)]
#![warn(missing_docs, clippy::needless_borrow)]
// Clippy lints, some should be disabled incrementally
#![allow(
clippy::float_cmp,
Expand All @@ -24,7 +24,6 @@
clippy::type_complexity,
clippy::upper_case_acronyms
)]
#![deny(clippy::needless_borrow)]

//! [DataFusion](https://github.com/apache/arrow-datafusion)
//! is an extensible query execution framework that uses
Expand Down

0 comments on commit f14084a

Please sign in to comment.