From 0660c01abd631e8b45221d1f0199b290fffcd036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= Date: Sun, 10 Dec 2023 14:34:42 +0100 Subject: [PATCH] chore: enable some more lints by default --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 8f3d323..2d3455d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,3 +6,7 @@ resolver = "2" # Add debug symbols on release mode to allow debugging upstream code. # This does not affect library users debug = true + +[workspace.lints.clippy] +cargo = "warn" +pedantic = "warn"