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::char_lit_as_u8
1 parent 9c5b99d commit 3b262bdCopy full SHA for 3b262bd
src/bootstrap/src/core/build_steps/clippy.rs
@@ -385,14 +385,18 @@ impl Step for CI {
385
let library_clippy_cfg = LintConfig {
386
allow: vec!["clippy::all".into()],
387
warn: vec![],
388
- deny: vec!["clippy::correctness".into()],
+ deny: vec![
389
+ "clippy::correctness".into(),
390
+ "clippy::char_lit_as_u8".into(),
391
+ ],
392
forbid: vec![],
393
};
394
let compiler_clippy_cfg = LintConfig {
395
396
397
deny: vec![
398
"clippy::correctness".into(),
399
400
"clippy::clone_on_ref_ptr".into(),
401
"clippy::format_in_format_args".into(),
402
"clippy::four_forward_slashes".into(),
0 commit comments