1
- // BEGIN - Embark standard lints v0.2
1
+ // BEGIN - Embark standard lints v0.3
2
2
// do not change or add/remove here, but one can add exceptions after this section
3
3
// for more info see: <https://github.com/EmbarkStudios/rust-ecosystem/issues/59>
4
4
#![ deny( unsafe_code) ]
17
17
clippy:: if_let_mutex,
18
18
clippy:: imprecise_flops,
19
19
clippy:: inefficient_to_string,
20
+ clippy:: large_types_passed_by_value,
20
21
clippy:: let_unit_value,
21
22
clippy:: linkedlist,
22
23
clippy:: lossy_float_literal,
23
24
clippy:: macro_use_imports,
25
+ clippy:: map_err_ignore,
24
26
clippy:: map_flatten,
25
27
clippy:: map_unwrap_or,
26
28
clippy:: match_on_vec_items,
29
+ clippy:: match_same_arms,
27
30
clippy:: match_wildcard_for_single_variants,
28
31
clippy:: mem_forget,
29
32
clippy:: mismatched_target_os,
33
36
clippy:: pub_enum_variant_names,
34
37
clippy:: ref_option_ref,
35
38
clippy:: rest_pat_in_fully_bound_structs,
39
+ clippy:: string_add_assign,
40
+ clippy:: string_add,
36
41
clippy:: string_to_string,
37
42
clippy:: suboptimal_flops,
38
43
clippy:: todo,
44
+ clippy:: unimplemented,
39
45
clippy:: unnested_or_patterns,
40
46
clippy:: unused_self,
41
47
clippy:: verbose_file_reads,
42
48
future_incompatible,
43
49
nonstandard_style,
44
50
rust_2018_idioms
45
51
) ]
46
- // END - Embark standard lints v0.2
52
+ // END - Embark standard lints v0.3
47
53
// crate-specific exceptions:
48
54
#![ allow( ) ]
0 commit comments