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 }
182
182
blanket_clippy_restriction_lints = { level = " allow" , priority = 5 }
183
183
184
184
absolute_paths = " allow"
185
- as_conversions = " allow"
185
+ arbitrary_source_item_ordering = " allow" # requires major refactor, perhaps someday
186
186
arithmetic_side_effects = " allow"
187
+ as_conversions = " allow"
187
188
bool_to_int_with_if = " allow"
188
189
default_numeric_fallback = " allow"
189
190
else_if_without_else = " allow"
190
191
expect_used = " allow"
192
+ field_scoped_visibility_modifiers = " allow" # too strict
191
193
float_arithmetic = " allow"
192
194
implicit_return = " allow"
193
195
indexing_slicing = " allow"
@@ -218,7 +220,9 @@ std_instead_of_core = "allow"
218
220
tabs_in_doc_comments = " allow"
219
221
tests_outside_test_module = " allow"
220
222
too_many_lines = " allow"
223
+ unused_self = " allow"
221
224
unwrap_used = " allow"
225
+ used_underscore_items = " allow" # See: https://github.com/rust-lang/rust-clippy/issues/13478
222
226
wildcard_enum_match_arm = " allow"
223
227
224
228
[lints .rustdoc ]
You can’t perform that action at this time.
0 commit comments