From e362cce6dc3189063a39590224cb1e11dc7d7141 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 19 Jun 2024 02:31:31 -0500 Subject: [PATCH] chore(LakeWatchAPI): configure clippy to be more aggressive --- LakeWatchAPI/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LakeWatchAPI/src/main.rs b/LakeWatchAPI/src/main.rs index 35c9ad0..13de516 100644 --- a/LakeWatchAPI/src/main.rs +++ b/LakeWatchAPI/src/main.rs @@ -1,3 +1,5 @@ +#![deny(clippy::all)] +#![warn(clippy::pedantic)] use lakewatch::{ startup::Application, telemetry::{get_subscriber, init_subscriber},