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.
clippy::needless_bool
clippy::needless_bool_assign
1 parent fc683cb commit e6056b5Copy full SHA for e6056b5
src/bootstrap/src/core/build_steps/clippy.rs
@@ -388,6 +388,8 @@ impl Step for CI {
388
deny: vec![
389
"clippy::correctness".into(),
390
"clippy::char_lit_as_u8".into(),
391
+ "clippy::needless_bool".into(),
392
+ "clippy::needless_bool_assign".into(),
393
"clippy::non_minimal_cfg".into(),
394
],
395
forbid: vec![],
@@ -401,6 +403,8 @@ impl Step for CI {
401
403
"clippy::clone_on_ref_ptr".into(),
402
404
"clippy::format_in_format_args".into(),
405
"clippy::four_forward_slashes".into(),
406
407
408
409
410
0 commit comments