abc4c3989b
- Remove nightly-only features from .rustfmt.toml and vendor/ss58-registry/rustfmt.toml - Removed features: imports_granularity, wrap_comments, comment_width, reorder_impl_items, spaces_around_ranges, binop_separator, match_arm_blocks, trailing_semicolon, trailing_comma - Format all 898 affected files with stable rustfmt - Ensures long-term reliability without nightly toolchain dependency
20 lines
359 B
TOML
20 lines
359 B
TOML
# SS58 Registry - Stable Rustfmt Configuration
|
|
# Only stable features for compatibility
|
|
|
|
# Basic
|
|
hard_tabs = true
|
|
max_width = 100
|
|
use_small_heuristics = "Max"
|
|
|
|
# Imports
|
|
reorder_imports = true
|
|
|
|
# Consistency
|
|
newline_style = "Unix"
|
|
|
|
# Misc
|
|
chain_width = 80
|
|
match_arm_leading_pipes = "Preserve"
|
|
match_block_trailing_comma = true
|
|
use_field_init_shorthand = true
|