fix lint group priority

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-06-16 00:25:49 +00:00
parent 3872ae80f7
commit 83565007bb

View file

@ -741,34 +741,27 @@ significant_drop_tightening = { level = "allow", priority = 1 } # TODO
pedantic = "warn" pedantic = "warn"
## some sadness ## some sadness
cast_possible_truncation = "allow" cast_possible_truncation = { level = "allow", priority = 1 }
cast_precision_loss = "allow" cast_precision_loss = { level = "allow", priority = 1 }
cast_sign_loss = "allow" cast_sign_loss = { level = "allow", priority = 1 }
doc_markdown = "allow" doc_markdown = { level = "allow", priority = 1 }
error_impl_error = "allow" error_impl_error = { level = "allow", priority = 1 }
expect_used = "allow" expect_used = { level = "allow", priority = 1 }
if_not_else = "allow" if_not_else = { level = "allow", priority = 1 }
if_then_some_else_none = "allow" if_then_some_else_none = { level = "allow", priority = 1 }
implicit_return = "allow" implicit_return = { level = "allow", priority = 1 }
inline_always = "allow" inline_always = { level = "allow", priority = 1 }
map_err_ignore = "allow" map_err_ignore = { level = "allow", priority = 1 }
missing_docs_in_private_items = "allow" missing_docs_in_private_items = { level = "allow", priority = 1 }
missing_errors_doc = "allow" missing_errors_doc = { level = "allow", priority = 1 }
missing_panics_doc = "allow" missing_panics_doc = { level = "allow", priority = 1 }
mod_module_files = "allow" mod_module_files = { level = "allow", priority = 1 }
module_name_repetitions = "allow" module_name_repetitions = { level = "allow", priority = 1 }
multiple_inherent_impl = "allow" no_effect_underscore_binding = { level = "allow", priority = 1 }
no_effect_underscore_binding = "allow"
ref_patterns = "allow"
same_name_method = "allow"
similar_names = { level = "allow", priority = 1 } similar_names = { level = "allow", priority = 1 }
single_call_fn = "allow"
string_add = "allow"
string_slice = "allow"
struct_field_names = { level = "allow", priority = 1 } struct_field_names = { level = "allow", priority = 1 }
unnecessary_wraps = { level = "allow", priority = 1 } unnecessary_wraps = { level = "allow", priority = 1 }
unused_async = { level = "allow", priority = 1 } unused_async = { level = "allow", priority = 1 }
unwrap_used = "allow"
################### ###################
perf = "warn" perf = "warn"
@ -822,10 +815,10 @@ style = "warn"
## some sadness ## some sadness
# trivial assertions are quite alright # trivial assertions are quite alright
assertions_on_constants = "allow" assertions_on_constants = { level = "allow", priority = 1 }
################### ###################
suspicious = "warn" suspicious = "warn"
## some sadness ## some sadness
let_underscore_future = "allow" let_underscore_future = { level = "allow", priority = 1 }