From 787c16a9dcdebe056bcba0a890e91c69c33d6eeb Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Mon, 18 May 2026 11:11:50 -0700 Subject: [PATCH] add wacky lints --- Cargo.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 6428a94..080754c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,3 +5,14 @@ members = [ "klondike-cli", ] resolver = "3" + +[workspace.lints.rust] +# unsafe_code = "forbid" +# missing_docs = "warn" +# missing_debug_implementations = "warn" +single_use_lifetimes = "warn" +trivial_casts = "warn" +unused_lifetimes = "warn" +unused_qualifications = "warn" +# variant_size_differences = "warn" +unexpected_cfgs = "warn"