You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unsafe_op_in_unsafe_fn = "warn"# `unsafe_op_in_unsafe_fn` may become the default in future Rust versions: https://github.com/rust-lang/rust/issues/71668
73
+
unexpected_cfgs = "warn"
74
+
unsafe_op_in_unsafe_fn = "warn"# `unsafe_op_in_unsafe_fn` may become the default in future Rust versions: https://github.com/rust-lang/rust/issues/71668
73
75
unused_extern_crates = "warn"
74
76
unused_import_braces = "warn"
75
77
unused_lifetimes = "warn"
76
78
77
79
trivial_casts = "allow"
78
80
unused_qualifications = "allow"
79
81
80
-
81
82
[workspace.lints.rustdoc]
82
83
all = "warn"
84
+
broken_intra_doc_links = "warn"
83
85
missing_crate_level_docs = "warn"
84
86
85
-
87
+
# See also clippy.toml
86
88
[workspace.lints.clippy]
89
+
all = { level = "warn", priority = -1 }
90
+
87
91
allow_attributes = "warn"
88
92
as_ptr_cast_mut = "warn"
89
93
await_holding_lock = "warn"
90
94
bool_to_int_with_if = "warn"
91
95
branches_sharing_code = "warn"
96
+
cast_possible_wrap = "warn"
92
97
char_lit_as_u8 = "warn"
93
98
checked_conversions = "warn"
94
99
clear_with_drain = "warn"
100
+
clone_on_ref_ptr = "warn"
95
101
cloned_instead_of_copied = "warn"
102
+
coerce_container_to_any = "warn"
103
+
comparison_chain = "warn"
96
104
dbg_macro = "warn"
97
105
debug_assert_with_mut_call = "warn"
98
106
default_union_representation = "warn"
99
107
derive_partial_eq_without_eq = "warn"
100
-
disallowed_macros = "warn"# See clippy.toml
101
-
disallowed_methods = "warn"# See clippy.toml
102
-
disallowed_names = "warn"# See clippy.toml
103
-
disallowed_script_idents = "warn"# See clippy.toml
104
-
disallowed_types = "warn"# See clippy.toml
108
+
disallowed_macros = "warn"# See clippy.toml
109
+
disallowed_methods = "warn"# See clippy.toml
110
+
disallowed_names = "warn"# See clippy.toml
111
+
disallowed_script_idents = "warn"# See clippy.toml
0 commit comments