Skip to content

Commit a78728e

Browse files
author
Guillaume Fraux
committed
Parametrize clippy
1 parent 648f2b0 commit a78728e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

soa-derive-internal/src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#![recursion_limit="512"]
22

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+
39
extern crate proc_macro;
410

511
use proc_macro2::TokenStream;

0 commit comments

Comments
 (0)