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.
2 parents 8dfdb90 + f09ff2a commit 0db1646Copy full SHA for 0db1646
src/lib.rs
@@ -129,6 +129,12 @@
129
#![deny(unused_mut)]
130
#![warn(missing_docs)]
131
132
+// In general, rust is absolutely horrid at supporting users doing things like,
133
+// for example, compiling Rust code for real environments. Disable useless lints
134
+// that don't do anything but annoy us and cant actually ever be resolved.
135
+#![allow(bare_trait_objects)]
136
+#![allow(ellipsis_inclusive_range_patterns)]
137
+
138
#![cfg_attr(feature = "dev", allow(unstable_features))]
139
#![cfg_attr(feature = "dev", feature(plugin))]
140
#![cfg_attr(feature = "dev", plugin(clippy))]
0 commit comments