a291c8690a
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
22 lines
569 B
TOML
22 lines
569 B
TOML
edition = "2021"
|
|
newline_style = "Unix"
|
|
|
|
# Default code with is 100 characters, comments should follow
|
|
# suit.
|
|
wrap_comments = true
|
|
|
|
# The default of this option creates hard-to-read nesting of
|
|
# conditionals, turn it off.
|
|
combine_control_expr = false
|
|
|
|
# Group imports by module, but no higher. This avoids hard-to-read
|
|
# nested use statements.
|
|
imports_granularity = "Module"
|
|
|
|
# Avoid vertical visual clutter by unnecessarily exploding
|
|
# block-like arguments.
|
|
overflow_delimited_expr = true
|
|
|
|
# Miscellaneous
|
|
format_code_in_doc_comments = true
|
|
normalize_comments = true
|