1
1
[workspace .lints .rust ]
2
+ elided_lifetimes_in_paths = " warn"
3
+ explicit_outlives_requirements = " warn"
4
+ macro_use_extern_crate = " warn"
2
5
missing_abi = " warn"
3
6
missing_docs = " warn"
4
7
noop_method_call = " warn"
5
8
pointer_structural_match = " warn"
9
+ single_use_lifetimes = " warn"
10
+ unit_bindings = " warn"
6
11
unreachable_pub = " warn"
12
+ unsafe_op_in_unsafe_fn = " warn"
7
13
unused_extern_crates = " warn"
8
14
unused_import_braces = " warn"
9
15
unused_lifetimes = " warn"
16
+ unused_macro_rules = " warn"
10
17
unused_qualifications = " warn"
11
18
unused_tuple_struct_fields = " warn"
12
19
13
20
[workspace .lints .clippy ]
14
21
pedantic = " warn"
15
22
16
23
as_conversions = " warn"
24
+ assertions_on_result_states = " warn"
17
25
dbg_macro = " warn"
26
+ default_union_representation = " warn"
27
+ deref_by_slicing = " warn"
28
+ empty_drop = " warn"
18
29
empty_structs_with_brackets = " warn"
30
+ error_impl_error = " warn"
31
+ exit = " warn"
32
+ filetype_is_file = " warn"
33
+ float_cmp_const = " warn"
34
+ format_push_string = " warn"
19
35
get_unwrap = " warn"
20
36
if_then_some_else_none = " warn"
37
+ impl_trait_in_params = " warn"
38
+ infinite_loop = " warn"
21
39
let_underscore_must_use = " warn"
40
+ let_underscore_untyped = " warn"
41
+ lossy_float_literal = " warn"
22
42
map_err_ignore = " warn"
43
+ mem_forget = " warn"
44
+ missing_assert_message = " warn"
23
45
missing_docs_in_private_items = " warn"
46
+ mod_module_files = " warn"
47
+ multiple_inherent_impl = " warn"
48
+ mutex_atomic = " warn"
24
49
negative_feature_names = " warn"
25
50
pub_without_shorthand = " warn"
26
51
rc_buffer = " warn"
@@ -29,15 +54,24 @@ redundant_feature_names = "warn"
29
54
redundant_type_annotations = " warn"
30
55
ref_patterns = " warn"
31
56
rest_pat_in_fully_bound_structs = " warn"
57
+ same_name_method = " warn"
58
+ semicolon_outside_block = " warn"
32
59
str_to_string = " warn"
33
60
string_add = " warn"
61
+ string_lit_chars_any = " warn"
34
62
string_slice = " warn"
35
63
string_to_string = " warn"
64
+ suspicious_xor_used_as_pow = " warn"
36
65
tests_outside_test_module = " warn"
66
+ try_err = " warn"
37
67
undocumented_unsafe_blocks = " warn"
68
+ unnecessary_safety_comment = " warn"
69
+ unnecessary_safety_doc = " warn"
70
+ unnecessary_self_imports = " warn"
38
71
unneeded_field_pattern = " warn"
39
72
unseparated_literal_suffix = " warn"
40
73
unwrap_used = " warn"
74
+ verbose_file_reads = " warn"
41
75
wildcard_dependencies = " warn"
42
76
43
77
[package ]
0 commit comments