# The formatting rustfmt cannot reach: TOML, YAML, Markdown, shell.
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 4

[*.{yml,yaml,json,toml}]
indent_size = 2

[*.md]
# Two trailing spaces are a hard line break in Markdown, and trimming them
# silently changes what a paragraph looks like.
trim_trailing_whitespace = false

[justfile]
indent_size = 4
