We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656ff23 commit 92e8de6Copy full SHA for 92e8de6
Cargo.toml
@@ -72,6 +72,11 @@ rstest = "0.26"
72
unused_qualifications = "warn"
73
74
[lints.clippy]
75
+# Restrictions
76
+panic_in_result_fn = "warn"
77
+todo = "warn"
78
+unwrap_used = "warn"
79
+# Pedantics without being too noisy
80
cargo = { level = "warn", priority = -1 }
81
pedantic = { level = "warn", priority = -1 }
82
missing_errors_doc = "allow"
tests/test.rs
@@ -1,3 +1,5 @@
1
+#![expect(clippy::unwrap_used)]
2
+
3
use insta::assert_snapshot;
4
use rusqlite::types::FromSql;
5
use rusqlite::{Connection, Result};
0 commit comments