dynix/rustfmt.toml

17 lines
571 B
TOML
Raw Normal View History

2026-03-11 14:26:59 +01:00
# SPDX-FileCopyrightText: 2026 Qyriad <qyriad@qyriad.me>
#
# SPDX-License-Identifier: EUPL-1.1
match_block_trailing_comma = true
merge_derives = false
2026-03-22 17:15:04 +01:00
# Unstable options.
blank_lines_upper_bound = 3
format_code_in_doc_comments = true
format_macro_matchers = true
# When structs, slices, arrays, and block/array-like macros are used as the last argument in an expression list,
# allow them to overflow (like blocks/closures) instead of being indented on a new line.
overflow_delimited_expr = true
# Put `type` and `const` items before methods.
reorder_impl_items = true