summaryrefslogtreecommitdiffstats
path: root/packages/svgbob/rustfmt.toml
blob: 503ede84d683e633911e0556aa898dffb0c2853e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Use unstable features
unstable_features = true

max_width = 80

## Visually align, useful in writing the view
indent_style = "Block"
imports_indent = "Block"
reorder_imports = true
reorder_impl_items = true
merge_imports = true
## I want to be able to delete unused imports easily
imports_layout = "Vertical"
## Default value is false, yet clipy keeps nagging on this
use_field_init_shorthand = true

## also format macro
format_macro_matchers = true
force_multiline_blocks = true