33 lines
724 B
TOML
33 lines
724 B
TOML
unstable_features = true
|
|
max_width = 80
|
|
inline_attribute_width = 40
|
|
|
|
skip_macro_invocations = ["concat"]
|
|
|
|
imports_granularity = "Crate"
|
|
group_imports = "StdExternalCrate"
|
|
|
|
fn_single_line = true
|
|
match_block_trailing_comma = true
|
|
use_field_init_shorthand = true
|
|
use_try_shorthand = true
|
|
hex_literal_case = "Lower"
|
|
where_single_line = true
|
|
condense_wildcard_suffixes = true
|
|
combine_control_expr = false
|
|
empty_item_single_line = true
|
|
reorder_impl_items = true
|
|
trailing_semicolon = false
|
|
|
|
wrap_comments = true
|
|
normalize_comments = true
|
|
normalize_doc_attributes = true
|
|
format_code_in_doc_comments = true
|
|
doc_comment_code_block_width = 70
|
|
|
|
error_on_unformatted = true
|
|
error_on_line_overflow = true
|
|
|
|
ignore = [
|
|
"tests/mocks",
|
|
]
|