diff --git a/src/bin/run-emitter-test-suite.rs b/src/bin/run-emitter-test-suite.rs index 2145599..0c51b9c 100644 --- a/src/bin/run-emitter-test-suite.rs +++ b/src/bin/run-emitter-test-suite.rs @@ -5,6 +5,7 @@ clippy::cast_possible_wrap, clippy::cast_sign_loss, clippy::items_after_statements, + clippy::let_underscore_untyped, clippy::missing_errors_doc, clippy::missing_safety_doc, clippy::ptr_as_ptr, diff --git a/src/bin/run-parser-test-suite.rs b/src/bin/run-parser-test-suite.rs index 7b1f58c..439ee03 100644 --- a/src/bin/run-parser-test-suite.rs +++ b/src/bin/run-parser-test-suite.rs @@ -5,6 +5,7 @@ clippy::cast_possible_wrap, clippy::cast_sign_loss, clippy::items_after_statements, + clippy::let_underscore_untyped, clippy::missing_errors_doc, clippy::missing_safety_doc, clippy::too_many_lines diff --git a/src/lib.rs b/src/lib.rs index 0f8bc0b..7910107 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -20,6 +20,7 @@ clippy::fn_params_excessive_bools, clippy::if_not_else, clippy::items_after_statements, + clippy::let_underscore_untyped, clippy::manual_range_contains, clippy::manual_swap, clippy::missing_panics_doc,