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 648f2b0 commit a78728eCopy full SHA for a78728e
soa-derive-internal/src/lib.rs
@@ -1,5 +1,11 @@
1
#![recursion_limit="512"]
2
3
+#![warn(clippy::all, clippy::pedantic)]
4
+#![allow(clippy::needless_return, clippy::redundant_field_names)]
5
+#![allow(clippy::stutter, clippy::use_self)]
6
+// TODO: improve the code and make it simpler to read
7
+#![allow(clippy::cyclomatic_complexity)]
8
+
9
extern crate proc_macro;
10
11
use proc_macro2::TokenStream;
0 commit comments