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 12df432 commit b1f82eeCopy full SHA for b1f82ee
src/lib.rs
@@ -1,3 +1,16 @@
1
+#![warn(clippy::all, clippy::pedantic, clippy::nursery, clippy::cargo)]
2
+#![allow(
3
+ clippy::cast_possible_truncation,
4
+ clippy::cast_possible_wrap,
5
+ clippy::cast_sign_loss,
6
+ clippy::cast_lossless,
7
+ clippy::cast_precision_loss,
8
+ clippy::missing_const_for_fn,
9
+ clippy::use_self,
10
+ clippy::module_name_repetitions,
11
+ clippy::cargo_common_metadata
12
+)]
13
+
14
use std::error::Error as StdError;
15
use std::fmt::{self, Display};
16
0 commit comments