File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -182,12 +182,14 @@ restriction = { level = "warn", priority = -2 }
182182blanket_clippy_restriction_lints = { level = " allow" , priority = 5 }
183183
184184absolute_paths = " allow"
185- as_conversions = " allow"
185+ arbitrary_source_item_ordering = " allow" # requires major refactor, perhaps someday
186186arithmetic_side_effects = " allow"
187+ as_conversions = " allow"
187188bool_to_int_with_if = " allow"
188189default_numeric_fallback = " allow"
189190else_if_without_else = " allow"
190191expect_used = " allow"
192+ field_scoped_visibility_modifiers = " allow" # too strict
191193float_arithmetic = " allow"
192194implicit_return = " allow"
193195indexing_slicing = " allow"
@@ -218,7 +220,9 @@ std_instead_of_core = "allow"
218220tabs_in_doc_comments = " allow"
219221tests_outside_test_module = " allow"
220222too_many_lines = " allow"
223+ unused_self = " allow"
221224unwrap_used = " allow"
225+ used_underscore_items = " allow" # See: https://github.com/rust-lang/rust-clippy/issues/13478
222226wildcard_enum_match_arm = " allow"
223227
224228[lints .rustdoc ]
You can’t perform that action at this time.
0 commit comments