Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Commit 5e6385d

Browse files
committed
Specify parse module warning exemptions
1 parent eb06575 commit 5e6385d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/lib.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
#[allow(warnings)]
1+
#[allow(
2+
unused_imports,
3+
non_camel_case_types,
4+
clippy::redundant_closure_call,
5+
clippy::type_complexity,
6+
clippy::cognitive_complexity,
7+
clippy::large_enum_variant
8+
)]
29
pub mod parse {
310
include!(concat!(env!("OUT_DIR"), "/parse.rs"));
411
}

0 commit comments

Comments
 (0)