|
8 | 8 | #![feature(io_error_more)]
|
9 | 9 | #![warn(rust_2018_idioms)]
|
10 | 10 | #![allow(clippy::cast_lossless)]
|
| 11 | +// TODO: Uncategorized. Some of these we'll want to fix, some keep ignored. |
| 12 | +#![allow( |
| 13 | + clippy::assign_op_pattern, |
| 14 | + clippy::clone_on_copy, |
| 15 | + clippy::collapsible_else_if, |
| 16 | + clippy::collapsible_if, |
| 17 | + clippy::comparison_chain, |
| 18 | + clippy::enum_variant_names, |
| 19 | + clippy::extra_unused_lifetimes, |
| 20 | + clippy::field_reassign_with_default, |
| 21 | + clippy::from_over_into, |
| 22 | + clippy::if_same_then_else, |
| 23 | + clippy::len_zero, |
| 24 | + clippy::manual_map, |
| 25 | + clippy::mem_replace_with_default, |
| 26 | + clippy::needless_borrow, |
| 27 | + clippy::needless_lifetimes, |
| 28 | + clippy::needless_question_mark, |
| 29 | + clippy::needless_return, |
| 30 | + clippy::new_without_default, |
| 31 | + clippy::op_ref, |
| 32 | + clippy::redundant_closure, |
| 33 | + clippy::redundant_field_names, |
| 34 | + clippy::single_char_add_str, |
| 35 | + clippy::single_char_pattern, |
| 36 | + clippy::single_match, |
| 37 | + clippy::unnecessary_mut_passed, |
| 38 | + clippy::useless_conversion, |
| 39 | + clippy::useless_format |
| 40 | +)] |
11 | 41 |
|
12 | 42 | extern crate rustc_apfloat;
|
13 | 43 | extern crate rustc_ast;
|
|
0 commit comments